Try AWS Native preview for resources not in the classic version.
aws.route53recoveryreadiness.ResourceSet
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an AWS Route 53 Recovery Readiness Resource Set.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.route53recoveryreadiness.ResourceSet("example", {
resourceSetName: my_cw_alarm_set,
resourceSetType: "AWS::CloudWatch::Alarm",
resources: [{
resourceArn: exampleAwsCloudwatchMetricAlarm.arn,
}],
});
import pulumi
import pulumi_aws as aws
example = aws.route53recoveryreadiness.ResourceSet("example",
resource_set_name=my_cw_alarm_set,
resource_set_type="AWS::CloudWatch::Alarm",
resources=[{
"resourceArn": example_aws_cloudwatch_metric_alarm["arn"],
}])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53recoveryreadiness"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := route53recoveryreadiness.NewResourceSet(ctx, "example", &route53recoveryreadiness.ResourceSetArgs{
ResourceSetName: pulumi.Any(my_cw_alarm_set),
ResourceSetType: pulumi.String("AWS::CloudWatch::Alarm"),
Resources: route53recoveryreadiness.ResourceSetResourceArray{
&route53recoveryreadiness.ResourceSetResourceArgs{
ResourceArn: pulumi.Any(exampleAwsCloudwatchMetricAlarm.Arn),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Route53RecoveryReadiness.ResourceSet("example", new()
{
ResourceSetName = my_cw_alarm_set,
ResourceSetType = "AWS::CloudWatch::Alarm",
Resources = new[]
{
new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceArgs
{
ResourceArn = exampleAwsCloudwatchMetricAlarm.Arn,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.route53recoveryreadiness.ResourceSet;
import com.pulumi.aws.route53recoveryreadiness.ResourceSetArgs;
import com.pulumi.aws.route53recoveryreadiness.inputs.ResourceSetResourceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceSet("example", ResourceSetArgs.builder()
.resourceSetName(my_cw_alarm_set)
.resourceSetType("AWS::CloudWatch::Alarm")
.resources(ResourceSetResourceArgs.builder()
.resourceArn(exampleAwsCloudwatchMetricAlarm.arn())
.build())
.build());
}
}
resources:
example:
type: aws:route53recoveryreadiness:ResourceSet
properties:
resourceSetName: ${["my-cw-alarm-set"]}
resourceSetType: AWS::CloudWatch::Alarm
resources:
- resourceArn: ${exampleAwsCloudwatchMetricAlarm.arn}
Create ResourceSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceSet(name: string, args: ResourceSetArgs, opts?: CustomResourceOptions);
@overload
def ResourceSet(resource_name: str,
args: ResourceSetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_set_name: Optional[str] = None,
resource_set_type: Optional[str] = None,
resources: Optional[Sequence[ResourceSetResourceArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewResourceSet(ctx *Context, name string, args ResourceSetArgs, opts ...ResourceOption) (*ResourceSet, error)
public ResourceSet(string name, ResourceSetArgs args, CustomResourceOptions? opts = null)
public ResourceSet(String name, ResourceSetArgs args)
public ResourceSet(String name, ResourceSetArgs args, CustomResourceOptions options)
type: aws:route53recoveryreadiness:ResourceSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ResourceSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ResourceSetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ResourceSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceSetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsResourceSetResource = new Aws.Route53RecoveryReadiness.ResourceSet("awsResourceSetResource", new()
{
ResourceSetName = "string",
ResourceSetType = "string",
Resources = new[]
{
new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceArgs
{
ComponentId = "string",
DnsTargetResource = new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceDnsTargetResourceArgs
{
DomainName = "string",
HostedZoneArn = "string",
RecordSetId = "string",
RecordType = "string",
TargetResource = new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceDnsTargetResourceTargetResourceArgs
{
NlbResource = new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceDnsTargetResourceTargetResourceNlbResourceArgs
{
Arn = "string",
},
R53Resource = new Aws.Route53RecoveryReadiness.Inputs.ResourceSetResourceDnsTargetResourceTargetResourceR53ResourceArgs
{
DomainName = "string",
RecordSetId = "string",
},
},
},
ReadinessScopes = new[]
{
"string",
},
ResourceArn = "string",
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := route53recoveryreadiness.NewResourceSet(ctx, "awsResourceSetResource", &route53recoveryreadiness.ResourceSetArgs{
ResourceSetName: pulumi.String("string"),
ResourceSetType: pulumi.String("string"),
Resources: route53recoveryreadiness.ResourceSetResourceArray{
&route53recoveryreadiness.ResourceSetResourceArgs{
ComponentId: pulumi.String("string"),
DnsTargetResource: &route53recoveryreadiness.ResourceSetResourceDnsTargetResourceArgs{
DomainName: pulumi.String("string"),
HostedZoneArn: pulumi.String("string"),
RecordSetId: pulumi.String("string"),
RecordType: pulumi.String("string"),
TargetResource: &route53recoveryreadiness.ResourceSetResourceDnsTargetResourceTargetResourceArgs{
NlbResource: &route53recoveryreadiness.ResourceSetResourceDnsTargetResourceTargetResourceNlbResourceArgs{
Arn: pulumi.String("string"),
},
R53Resource: &route53recoveryreadiness.ResourceSetResourceDnsTargetResourceTargetResourceR53ResourceArgs{
DomainName: pulumi.String("string"),
RecordSetId: pulumi.String("string"),
},
},
},
ReadinessScopes: pulumi.StringArray{
pulumi.String("string"),
},
ResourceArn: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var awsResourceSetResource = new ResourceSet("awsResourceSetResource", ResourceSetArgs.builder()
.resourceSetName("string")
.resourceSetType("string")
.resources(ResourceSetResourceArgs.builder()
.componentId("string")
.dnsTargetResource(ResourceSetResourceDnsTargetResourceArgs.builder()
.domainName("string")
.hostedZoneArn("string")
.recordSetId("string")
.recordType("string")
.targetResource(ResourceSetResourceDnsTargetResourceTargetResourceArgs.builder()
.nlbResource(ResourceSetResourceDnsTargetResourceTargetResourceNlbResourceArgs.builder()
.arn("string")
.build())
.r53Resource(ResourceSetResourceDnsTargetResourceTargetResourceR53ResourceArgs.builder()
.domainName("string")
.recordSetId("string")
.build())
.build())
.build())
.readinessScopes("string")
.resourceArn("string")
.build())
.tags(Map.of("string", "string"))
.build());
aws_resource_set_resource = aws.route53recoveryreadiness.ResourceSet("awsResourceSetResource",
resource_set_name="string",
resource_set_type="string",
resources=[{
"componentId": "string",
"dnsTargetResource": {
"domainName": "string",
"hostedZoneArn": "string",
"recordSetId": "string",
"recordType": "string",
"targetResource": {
"nlbResource": {
"arn": "string",
},
"r53Resource": {
"domainName": "string",
"recordSetId": "string",
},
},
},
"readinessScopes": ["string"],
"resourceArn": "string",
}],
tags={
"string": "string",
})
const awsResourceSetResource = new aws.route53recoveryreadiness.ResourceSet("awsResourceSetResource", {
resourceSetName: "string",
resourceSetType: "string",
resources: [{
componentId: "string",
dnsTargetResource: {
domainName: "string",
hostedZoneArn: "string",
recordSetId: "string",
recordType: "string",
targetResource: {
nlbResource: {
arn: "string",
},
r53Resource: {
domainName: "string",
recordSetId: "string",
},
},
},
readinessScopes: ["string"],
resourceArn: "string",
}],
tags: {
string: "string",
},
});
type: aws:route53recoveryreadiness:ResourceSet
properties:
resourceSetName: string
resourceSetType: string
resources:
- componentId: string
dnsTargetResource:
domainName: string
hostedZoneArn: string
recordSetId: string
recordType: string
targetResource:
nlbResource:
arn: string
r53Resource:
domainName: string
recordSetId: string
readinessScopes:
- string
resourceArn: string
tags:
string: string
ResourceSet Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ResourceSet resource accepts the following input properties:
- Resource
Set stringName - Unique name describing the resource set.
- Resource
Set stringType - Type of the resources in the resource set.
- Resources
List<Resource
Set Resource> List of resources to add to this resource set. See below.
The following arguments are optional:
- Dictionary<string, string>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
- Resource
Set stringName - Unique name describing the resource set.
- Resource
Set stringType - Type of the resources in the resource set.
- Resources
[]Resource
Set Resource Args List of resources to add to this resource set. See below.
The following arguments are optional:
- map[string]string
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
- resource
Set StringName - Unique name describing the resource set.
- resource
Set StringType - Type of the resources in the resource set.
- resources
List<Resource
Set Resource> List of resources to add to this resource set. See below.
The following arguments are optional:
- Map<String,String>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
- resource
Set stringName - Unique name describing the resource set.
- resource
Set stringType - Type of the resources in the resource set.
- resources
Resource
Set Resource[] List of resources to add to this resource set. See below.
The following arguments are optional:
- {[key: string]: string}
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
- resource_
set_ strname - Unique name describing the resource set.
- resource_
set_ strtype - Type of the resources in the resource set.
- resources
Sequence[Resource
Set Resource Args] List of resources to add to this resource set. See below.
The following arguments are optional:
- Mapping[str, str]
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
- resource
Set StringName - Unique name describing the resource set.
- resource
Set StringType - Type of the resources in the resource set.
- resources List<Property Map>
List of resources to add to this resource set. See below.
The following arguments are optional:
- Map<String>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceSet resource produces the following output properties:
- Arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing ResourceSet Resource
Get an existing ResourceSet resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ResourceSetState, opts?: CustomResourceOptions): ResourceSet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
resource_set_name: Optional[str] = None,
resource_set_type: Optional[str] = None,
resources: Optional[Sequence[ResourceSetResourceArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> ResourceSet
func GetResourceSet(ctx *Context, name string, id IDInput, state *ResourceSetState, opts ...ResourceOption) (*ResourceSet, error)
public static ResourceSet Get(string name, Input<string> id, ResourceSetState? state, CustomResourceOptions? opts = null)
public static ResourceSet get(String name, Output<String> id, ResourceSetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- Resource
Set stringName - Unique name describing the resource set.
- Resource
Set stringType - Type of the resources in the resource set.
- Resources
List<Resource
Set Resource> List of resources to add to this resource set. See below.
The following arguments are optional:
- Dictionary<string, string>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- Resource
Set stringName - Unique name describing the resource set.
- Resource
Set stringType - Type of the resources in the resource set.
- Resources
[]Resource
Set Resource Args List of resources to add to this resource set. See below.
The following arguments are optional:
- map[string]string
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - map[string]string
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- resource
Set StringName - Unique name describing the resource set.
- resource
Set StringType - Type of the resources in the resource set.
- resources
List<Resource
Set Resource> List of resources to add to this resource set. See below.
The following arguments are optional:
- Map<String,String>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- resource
Set stringName - Unique name describing the resource set.
- resource
Set stringType - Type of the resources in the resource set.
- resources
Resource
Set Resource[] List of resources to add to this resource set. See below.
The following arguments are optional:
- {[key: string]: string}
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- resource_
set_ strname - Unique name describing the resource set.
- resource_
set_ strtype - Type of the resources in the resource set.
- resources
Sequence[Resource
Set Resource Args] List of resources to add to this resource set. See below.
The following arguments are optional:
- Mapping[str, str]
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- ARN of the resource set
resources.#.component_id
- Unique identified for DNS Target Resources, use for readiness checks.
- resource
Set StringName - Unique name describing the resource set.
- resource
Set StringType - Type of the resources in the resource set.
- resources List<Property Map>
List of resources to add to this resource set. See below.
The following arguments are optional:
- Map<String>
- Key-value mapping of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level - Map<String>
- Map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
ResourceSetResource, ResourceSetResourceArgs
- Component
Id string - Dns
Target ResourceResource Set Resource Dns Target Resource - Component for DNS/Routing Control Readiness Checks.
- Readiness
Scopes List<string> - Recovery group ARN or cell ARN that contains this resource set.
- Resource
Arn string - ARN of the resource.
- Component
Id string - Dns
Target ResourceResource Set Resource Dns Target Resource - Component for DNS/Routing Control Readiness Checks.
- Readiness
Scopes []string - Recovery group ARN or cell ARN that contains this resource set.
- Resource
Arn string - ARN of the resource.
- component
Id String - dns
Target ResourceResource Set Resource Dns Target Resource - Component for DNS/Routing Control Readiness Checks.
- readiness
Scopes List<String> - Recovery group ARN or cell ARN that contains this resource set.
- resource
Arn String - ARN of the resource.
- component
Id string - dns
Target ResourceResource Set Resource Dns Target Resource - Component for DNS/Routing Control Readiness Checks.
- readiness
Scopes string[] - Recovery group ARN or cell ARN that contains this resource set.
- resource
Arn string - ARN of the resource.
- component_
id str - dns_
target_ Resourceresource Set Resource Dns Target Resource - Component for DNS/Routing Control Readiness Checks.
- readiness_
scopes Sequence[str] - Recovery group ARN or cell ARN that contains this resource set.
- resource_
arn str - ARN of the resource.
- component
Id String - dns
Target Property MapResource - Component for DNS/Routing Control Readiness Checks.
- readiness
Scopes List<String> - Recovery group ARN or cell ARN that contains this resource set.
- resource
Arn String - ARN of the resource.
ResourceSetResourceDnsTargetResource, ResourceSetResourceDnsTargetResourceArgs
- Domain
Name string - DNS Name that acts as the ingress point to a portion of application.
- Hosted
Zone stringArn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- Record
Set stringId - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - Record
Type string - Type of DNS Record of target resource.
- Target
Resource ResourceSet Resource Dns Target Resource Target Resource - Target resource the R53 record specified with the above params points to.
- Domain
Name string - DNS Name that acts as the ingress point to a portion of application.
- Hosted
Zone stringArn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- Record
Set stringId - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - Record
Type string - Type of DNS Record of target resource.
- Target
Resource ResourceSet Resource Dns Target Resource Target Resource - Target resource the R53 record specified with the above params points to.
- domain
Name String - DNS Name that acts as the ingress point to a portion of application.
- hosted
Zone StringArn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- record
Set StringId - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - record
Type String - Type of DNS Record of target resource.
- target
Resource ResourceSet Resource Dns Target Resource Target Resource - Target resource the R53 record specified with the above params points to.
- domain
Name string - DNS Name that acts as the ingress point to a portion of application.
- hosted
Zone stringArn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- record
Set stringId - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - record
Type string - Type of DNS Record of target resource.
- target
Resource ResourceSet Resource Dns Target Resource Target Resource - Target resource the R53 record specified with the above params points to.
- domain_
name str - DNS Name that acts as the ingress point to a portion of application.
- hosted_
zone_ strarn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- record_
set_ strid - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - record_
type str - Type of DNS Record of target resource.
- target_
resource ResourceSet Resource Dns Target Resource Target Resource - Target resource the R53 record specified with the above params points to.
- domain
Name String - DNS Name that acts as the ingress point to a portion of application.
- hosted
Zone StringArn - Hosted Zone ARN that contains the DNS record with the provided name of target resource.
- record
Set StringId - Route53 record set id to uniquely identify a record given a
domain_name
and arecord_type
. - record
Type String - Type of DNS Record of target resource.
- target
Resource Property Map - Target resource the R53 record specified with the above params points to.
ResourceSetResourceDnsTargetResourceTargetResource, ResourceSetResourceDnsTargetResourceTargetResourceArgs
- Nlb
Resource ResourceSet Resource Dns Target Resource Target Resource Nlb Resource - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - R53Resource
Resource
Set Resource Dns Target Resource Target Resource R53Resource - Route53 resource a DNS Target Resource record points to.
- Nlb
Resource ResourceSet Resource Dns Target Resource Target Resource Nlb Resource - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - R53Resource
Resource
Set Resource Dns Target Resource Target Resource R53Resource - Route53 resource a DNS Target Resource record points to.
- nlb
Resource ResourceSet Resource Dns Target Resource Target Resource Nlb Resource - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - r53Resource
Resource
Set Resource Dns Target Resource Target Resource R53Resource - Route53 resource a DNS Target Resource record points to.
- nlb
Resource ResourceSet Resource Dns Target Resource Target Resource Nlb Resource - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - r53Resource
Resource
Set Resource Dns Target Resource Target Resource R53Resource - Route53 resource a DNS Target Resource record points to.
- nlb_
resource ResourceSet Resource Dns Target Resource Target Resource Nlb Resource - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - r53_
resource ResourceSet Resource Dns Target Resource Target Resource R53Resource - Route53 resource a DNS Target Resource record points to.
- nlb
Resource Property Map - NLB resource a DNS Target Resource points to. Required if
r53_resource
is not set. - r53Resource Property Map
- Route53 resource a DNS Target Resource record points to.
ResourceSetResourceDnsTargetResourceTargetResourceNlbResource, ResourceSetResourceDnsTargetResourceTargetResourceNlbResourceArgs
- Arn string
- NLB resource ARN.
- Arn string
- NLB resource ARN.
- arn String
- NLB resource ARN.
- arn string
- NLB resource ARN.
- arn str
- NLB resource ARN.
- arn String
- NLB resource ARN.
ResourceSetResourceDnsTargetResourceTargetResourceR53Resource, ResourceSetResourceDnsTargetResourceTargetResourceR53ResourceArgs
- Domain
Name string - Domain name that is targeted.
- Record
Set stringId - Resource record set ID that is targeted.
- Domain
Name string - Domain name that is targeted.
- Record
Set stringId - Resource record set ID that is targeted.
- domain
Name String - Domain name that is targeted.
- record
Set StringId - Resource record set ID that is targeted.
- domain
Name string - Domain name that is targeted.
- record
Set stringId - Resource record set ID that is targeted.
- domain_
name str - Domain name that is targeted.
- record_
set_ strid - Resource record set ID that is targeted.
- domain
Name String - Domain name that is targeted.
- record
Set StringId - Resource record set ID that is targeted.
Import
Using pulumi import
, import Route53 Recovery Readiness resource set name using the resource set name. For example:
$ pulumi import aws:route53recoveryreadiness/resourceSet:ResourceSet my-cw-alarm-set example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.