aws.route53.RecordsExclusive
Explore with Pulumi AI
Import
Using pulumi import
, import Route 53 Records Exclusive using the zone_id
. For example:
$ pulumi import aws:route53/recordsExclusive:RecordsExclusive example ABCD1234
Create RecordsExclusive Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RecordsExclusive(name: string, args: RecordsExclusiveArgs, opts?: CustomResourceOptions);
@overload
def RecordsExclusive(resource_name: str,
args: RecordsExclusiveArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RecordsExclusive(resource_name: str,
opts: Optional[ResourceOptions] = None,
zone_id: Optional[str] = None,
resource_record_sets: Optional[Sequence[RecordsExclusiveResourceRecordSetArgs]] = None,
timeouts: Optional[RecordsExclusiveTimeoutsArgs] = None)
func NewRecordsExclusive(ctx *Context, name string, args RecordsExclusiveArgs, opts ...ResourceOption) (*RecordsExclusive, error)
public RecordsExclusive(string name, RecordsExclusiveArgs args, CustomResourceOptions? opts = null)
public RecordsExclusive(String name, RecordsExclusiveArgs args)
public RecordsExclusive(String name, RecordsExclusiveArgs args, CustomResourceOptions options)
type: aws:route53:RecordsExclusive
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 RecordsExclusiveArgs
- 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 RecordsExclusiveArgs
- 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 RecordsExclusiveArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RecordsExclusiveArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RecordsExclusiveArgs
- 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 recordsExclusiveResource = new Aws.Route53.RecordsExclusive("recordsExclusiveResource", new()
{
ZoneId = "string",
ResourceRecordSets = new[]
{
new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetArgs
{
Name = "string",
MultiValueAnswer = false,
Region = "string",
Geolocation = new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetGeolocationArgs
{
ContinentCode = "string",
CountryCode = "string",
SubdivisionCode = "string",
},
GeoproximityLocation = new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetGeoproximityLocationArgs
{
AwsRegion = "string",
Bias = 0,
Coordinates = new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinatesArgs
{
Latitude = "string",
Longitude = "string",
},
LocalZoneGroup = "string",
},
HealthCheckId = "string",
AliasTarget = new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetAliasTargetArgs
{
DnsName = "string",
EvaluateTargetHealth = false,
HostedZoneId = "string",
},
CidrRoutingConfig = new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetCidrRoutingConfigArgs
{
CollectionId = "string",
LocationName = "string",
},
Failover = "string",
ResourceRecords = new[]
{
new Aws.Route53.Inputs.RecordsExclusiveResourceRecordSetResourceRecordArgs
{
Value = "string",
},
},
SetIdentifier = "string",
TrafficPolicyInstanceId = "string",
Ttl = 0,
Type = "string",
Weight = 0,
},
},
Timeouts = new Aws.Route53.Inputs.RecordsExclusiveTimeoutsArgs
{
Create = "string",
Update = "string",
},
});
example, err := route53.NewRecordsExclusive(ctx, "recordsExclusiveResource", &route53.RecordsExclusiveArgs{
ZoneId: pulumi.String("string"),
ResourceRecordSets: route53.RecordsExclusiveResourceRecordSetArray{
&route53.RecordsExclusiveResourceRecordSetArgs{
Name: pulumi.String("string"),
MultiValueAnswer: pulumi.Bool(false),
Region: pulumi.String("string"),
Geolocation: &route53.RecordsExclusiveResourceRecordSetGeolocationArgs{
ContinentCode: pulumi.String("string"),
CountryCode: pulumi.String("string"),
SubdivisionCode: pulumi.String("string"),
},
GeoproximityLocation: &route53.RecordsExclusiveResourceRecordSetGeoproximityLocationArgs{
AwsRegion: pulumi.String("string"),
Bias: pulumi.Int(0),
Coordinates: &route53.RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinatesArgs{
Latitude: pulumi.String("string"),
Longitude: pulumi.String("string"),
},
LocalZoneGroup: pulumi.String("string"),
},
HealthCheckId: pulumi.String("string"),
AliasTarget: &route53.RecordsExclusiveResourceRecordSetAliasTargetArgs{
DnsName: pulumi.String("string"),
EvaluateTargetHealth: pulumi.Bool(false),
HostedZoneId: pulumi.String("string"),
},
CidrRoutingConfig: &route53.RecordsExclusiveResourceRecordSetCidrRoutingConfigArgs{
CollectionId: pulumi.String("string"),
LocationName: pulumi.String("string"),
},
Failover: pulumi.String("string"),
ResourceRecords: route53.RecordsExclusiveResourceRecordSetResourceRecordArray{
&route53.RecordsExclusiveResourceRecordSetResourceRecordArgs{
Value: pulumi.String("string"),
},
},
SetIdentifier: pulumi.String("string"),
TrafficPolicyInstanceId: pulumi.String("string"),
Ttl: pulumi.Int(0),
Type: pulumi.String("string"),
Weight: pulumi.Int(0),
},
},
Timeouts: &route53.RecordsExclusiveTimeoutsArgs{
Create: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var recordsExclusiveResource = new RecordsExclusive("recordsExclusiveResource", RecordsExclusiveArgs.builder()
.zoneId("string")
.resourceRecordSets(RecordsExclusiveResourceRecordSetArgs.builder()
.name("string")
.multiValueAnswer(false)
.region("string")
.geolocation(RecordsExclusiveResourceRecordSetGeolocationArgs.builder()
.continentCode("string")
.countryCode("string")
.subdivisionCode("string")
.build())
.geoproximityLocation(RecordsExclusiveResourceRecordSetGeoproximityLocationArgs.builder()
.awsRegion("string")
.bias(0)
.coordinates(RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinatesArgs.builder()
.latitude("string")
.longitude("string")
.build())
.localZoneGroup("string")
.build())
.healthCheckId("string")
.aliasTarget(RecordsExclusiveResourceRecordSetAliasTargetArgs.builder()
.dnsName("string")
.evaluateTargetHealth(false)
.hostedZoneId("string")
.build())
.cidrRoutingConfig(RecordsExclusiveResourceRecordSetCidrRoutingConfigArgs.builder()
.collectionId("string")
.locationName("string")
.build())
.failover("string")
.resourceRecords(RecordsExclusiveResourceRecordSetResourceRecordArgs.builder()
.value("string")
.build())
.setIdentifier("string")
.trafficPolicyInstanceId("string")
.ttl(0)
.type("string")
.weight(0)
.build())
.timeouts(RecordsExclusiveTimeoutsArgs.builder()
.create("string")
.update("string")
.build())
.build());
records_exclusive_resource = aws.route53.RecordsExclusive("recordsExclusiveResource",
zone_id="string",
resource_record_sets=[{
"name": "string",
"multi_value_answer": False,
"region": "string",
"geolocation": {
"continent_code": "string",
"country_code": "string",
"subdivision_code": "string",
},
"geoproximity_location": {
"aws_region": "string",
"bias": 0,
"coordinates": {
"latitude": "string",
"longitude": "string",
},
"local_zone_group": "string",
},
"health_check_id": "string",
"alias_target": {
"dns_name": "string",
"evaluate_target_health": False,
"hosted_zone_id": "string",
},
"cidr_routing_config": {
"collection_id": "string",
"location_name": "string",
},
"failover": "string",
"resource_records": [{
"value": "string",
}],
"set_identifier": "string",
"traffic_policy_instance_id": "string",
"ttl": 0,
"type": "string",
"weight": 0,
}],
timeouts={
"create": "string",
"update": "string",
})
const recordsExclusiveResource = new aws.route53.RecordsExclusive("recordsExclusiveResource", {
zoneId: "string",
resourceRecordSets: [{
name: "string",
multiValueAnswer: false,
region: "string",
geolocation: {
continentCode: "string",
countryCode: "string",
subdivisionCode: "string",
},
geoproximityLocation: {
awsRegion: "string",
bias: 0,
coordinates: {
latitude: "string",
longitude: "string",
},
localZoneGroup: "string",
},
healthCheckId: "string",
aliasTarget: {
dnsName: "string",
evaluateTargetHealth: false,
hostedZoneId: "string",
},
cidrRoutingConfig: {
collectionId: "string",
locationName: "string",
},
failover: "string",
resourceRecords: [{
value: "string",
}],
setIdentifier: "string",
trafficPolicyInstanceId: "string",
ttl: 0,
type: "string",
weight: 0,
}],
timeouts: {
create: "string",
update: "string",
},
});
type: aws:route53:RecordsExclusive
properties:
resourceRecordSets:
- aliasTarget:
dnsName: string
evaluateTargetHealth: false
hostedZoneId: string
cidrRoutingConfig:
collectionId: string
locationName: string
failover: string
geolocation:
continentCode: string
countryCode: string
subdivisionCode: string
geoproximityLocation:
awsRegion: string
bias: 0
coordinates:
latitude: string
longitude: string
localZoneGroup: string
healthCheckId: string
multiValueAnswer: false
name: string
region: string
resourceRecords:
- value: string
setIdentifier: string
trafficPolicyInstanceId: string
ttl: 0
type: string
weight: 0
timeouts:
create: string
update: string
zoneId: string
RecordsExclusive Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RecordsExclusive resource accepts the following input properties:
- Zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- Resource
Record List<RecordsSets Exclusive Resource Record Set> - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - Timeouts
Records
Exclusive Timeouts
- Zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- Resource
Record []RecordsSets Exclusive Resource Record Set Args - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - Timeouts
Records
Exclusive Timeouts Args
- zone
Id String ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record List<RecordsSets Exclusive Resource Record Set> - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts
- zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record RecordsSets Exclusive Resource Record Set[] - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts
- zone_
id str ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource_
record_ Sequence[Recordssets Exclusive Resource Record Set Args] - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts Args
- zone
Id String ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record List<Property Map>Sets - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the RecordsExclusive resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing RecordsExclusive Resource
Get an existing RecordsExclusive 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?: RecordsExclusiveState, opts?: CustomResourceOptions): RecordsExclusive
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
resource_record_sets: Optional[Sequence[RecordsExclusiveResourceRecordSetArgs]] = None,
timeouts: Optional[RecordsExclusiveTimeoutsArgs] = None,
zone_id: Optional[str] = None) -> RecordsExclusive
func GetRecordsExclusive(ctx *Context, name string, id IDInput, state *RecordsExclusiveState, opts ...ResourceOption) (*RecordsExclusive, error)
public static RecordsExclusive Get(string name, Input<string> id, RecordsExclusiveState? state, CustomResourceOptions? opts = null)
public static RecordsExclusive get(String name, Output<String> id, RecordsExclusiveState state, CustomResourceOptions options)
resources: _: type: aws:route53:RecordsExclusive get: id: ${id}
- 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.
- Resource
Record List<RecordsSets Exclusive Resource Record Set> - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - Timeouts
Records
Exclusive Timeouts - Zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- Resource
Record []RecordsSets Exclusive Resource Record Set Args - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - Timeouts
Records
Exclusive Timeouts Args - Zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record List<RecordsSets Exclusive Resource Record Set> - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts - zone
Id String ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record RecordsSets Exclusive Resource Record Set[] - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts - zone
Id string ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource_
record_ Sequence[Recordssets Exclusive Resource Record Set Args] - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts
Records
Exclusive Timeouts Args - zone_
id str ID of the hosted zone containing the resource record sets.
The following arguments are optional:
- resource
Record List<Property Map>Sets - A list of all resource record sets associated with the hosted zone.
See
resource_record_set
below. - timeouts Property Map
- zone
Id String ID of the hosted zone containing the resource record sets.
The following arguments are optional:
Supporting Types
RecordsExclusiveResourceRecordSet, RecordsExclusiveResourceRecordSetArgs
- Name string
- Name of the record.
- Alias
Target RecordsExclusive Resource Record Set Alias Target - Alias target block.
See
alias_target
below. - Cidr
Routing RecordsConfig Exclusive Resource Record Set Cidr Routing Config - Failover string
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - Geolocation
Records
Exclusive Resource Record Set Geolocation - Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - Geoproximity
Location RecordsExclusive Resource Record Set Geoproximity Location - Geoproximity location block.
See
geoproximity_location
below. - Health
Check stringId - Health check the record should be associated with.
- Multi
Value boolAnswer - Region string
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- Resource
Records List<RecordsExclusive Resource Record Set Resource Record> - Information about the resource records to act upon.
See
resource_records
below. - Set
Identifier string - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - Traffic
Policy stringInstance Id - Ttl int
- Resource record cache time to live (TTL), in seconds.
- Type string
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- Weight int
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
- Name string
- Name of the record.
- Alias
Target RecordsExclusive Resource Record Set Alias Target - Alias target block.
See
alias_target
below. - Cidr
Routing RecordsConfig Exclusive Resource Record Set Cidr Routing Config - Failover string
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - Geolocation
Records
Exclusive Resource Record Set Geolocation - Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - Geoproximity
Location RecordsExclusive Resource Record Set Geoproximity Location - Geoproximity location block.
See
geoproximity_location
below. - Health
Check stringId - Health check the record should be associated with.
- Multi
Value boolAnswer - Region string
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- Resource
Records []RecordsExclusive Resource Record Set Resource Record - Information about the resource records to act upon.
See
resource_records
below. - Set
Identifier string - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - Traffic
Policy stringInstance Id - Ttl int
- Resource record cache time to live (TTL), in seconds.
- Type string
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- Weight int
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
- name String
- Name of the record.
- alias
Target RecordsExclusive Resource Record Set Alias Target - Alias target block.
See
alias_target
below. - cidr
Routing RecordsConfig Exclusive Resource Record Set Cidr Routing Config - failover String
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - geolocation
Records
Exclusive Resource Record Set Geolocation - Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - geoproximity
Location RecordsExclusive Resource Record Set Geoproximity Location - Geoproximity location block.
See
geoproximity_location
below. - health
Check StringId - Health check the record should be associated with.
- multi
Value BooleanAnswer - region String
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- resource
Records List<RecordsExclusive Resource Record Set Resource Record> - Information about the resource records to act upon.
See
resource_records
below. - set
Identifier String - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - traffic
Policy StringInstance Id - ttl Integer
- Resource record cache time to live (TTL), in seconds.
- type String
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- weight Integer
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
- name string
- Name of the record.
- alias
Target RecordsExclusive Resource Record Set Alias Target - Alias target block.
See
alias_target
below. - cidr
Routing RecordsConfig Exclusive Resource Record Set Cidr Routing Config - failover string
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - geolocation
Records
Exclusive Resource Record Set Geolocation - Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - geoproximity
Location RecordsExclusive Resource Record Set Geoproximity Location - Geoproximity location block.
See
geoproximity_location
below. - health
Check stringId - Health check the record should be associated with.
- multi
Value booleanAnswer - region string
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- resource
Records RecordsExclusive Resource Record Set Resource Record[] - Information about the resource records to act upon.
See
resource_records
below. - set
Identifier string - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - traffic
Policy stringInstance Id - ttl number
- Resource record cache time to live (TTL), in seconds.
- type string
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- weight number
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
- name str
- Name of the record.
- alias_
target RecordsExclusive Resource Record Set Alias Target - Alias target block.
See
alias_target
below. - cidr_
routing_ Recordsconfig Exclusive Resource Record Set Cidr Routing Config - failover str
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - geolocation
Records
Exclusive Resource Record Set Geolocation - Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - geoproximity_
location RecordsExclusive Resource Record Set Geoproximity Location - Geoproximity location block.
See
geoproximity_location
below. - health_
check_ strid - Health check the record should be associated with.
- multi_
value_ boolanswer - region str
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- resource_
records Sequence[RecordsExclusive Resource Record Set Resource Record] - Information about the resource records to act upon.
See
resource_records
below. - set_
identifier str - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - traffic_
policy_ strinstance_ id - ttl int
- Resource record cache time to live (TTL), in seconds.
- type str
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- weight int
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
- name String
- Name of the record.
- alias
Target Property Map - Alias target block.
See
alias_target
below. - cidr
Routing Property MapConfig - failover String
- Type of failover resource record.
Valid values are
PRIMARY
andSECONDARY
. See the AWS documentation on DNS failover for additional details. - geolocation Property Map
- Geolocation block to control how Amazon Route 53 responds to DNS queries based on the geographic origin of the query.
See
geolocation
below. - geoproximity
Location Property Map - Geoproximity location block.
See
geoproximity_location
below. - health
Check StringId - Health check the record should be associated with.
- multi
Value BooleanAnswer - region String
- AWS region of the resource this record set refers to. Must be a valid AWS region name. See the AWS documentation on latency based routing for additional details.
- resource
Records List<Property Map> - Information about the resource records to act upon.
See
resource_records
below. - set
Identifier String - An identifier that differentiates among multiple resource record sets that have the same combination of name and type.
Required if using
cidr_routing_config
,failover
,geolocation
,geoproximity_location
,multivalue_answer
,region
, orweight
. - traffic
Policy StringInstance Id - ttl Number
- Resource record cache time to live (TTL), in seconds.
- type String
Record type. Valid values are
A
,AAAA
,CAA
,CNAME
,DS
,MX
,NAPTR
,NS
,PTR
,SOA
,SPF
,SRV
,TXT
,TLSA
,SSHFP
,SVCB
, andHTTPS
.The following arguments are optional:
Exactly one of
resource_records
oralias_target
must be specified.- weight Number
- Among resource record sets that have the same combination of DNS name and type, a value that determines the proportion of DNS queries that Amazon Route 53 responds to using the current resource record set.
RecordsExclusiveResourceRecordSetAliasTarget, RecordsExclusiveResourceRecordSetAliasTargetArgs
- Dns
Name string - DNS domain name for another resource record set in this hosted zone.
- Evaluate
Target boolHealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - Hosted
Zone stringId - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
- Dns
Name string - DNS domain name for another resource record set in this hosted zone.
- Evaluate
Target boolHealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - Hosted
Zone stringId - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
- dns
Name String - DNS domain name for another resource record set in this hosted zone.
- evaluate
Target BooleanHealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - hosted
Zone StringId - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
- dns
Name string - DNS domain name for another resource record set in this hosted zone.
- evaluate
Target booleanHealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - hosted
Zone stringId - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
- dns_
name str - DNS domain name for another resource record set in this hosted zone.
- evaluate_
target_ boolhealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - hosted_
zone_ strid - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
- dns
Name String - DNS domain name for another resource record set in this hosted zone.
- evaluate
Target BooleanHealth - Set to
true
if you want Route 53 to determine whether to respond to DNS queries using this resource record set by checking the health of the resource record set. Some resources have special requirements, see the AWS documentation for additional details. - hosted
Zone StringId - Hosted zone ID for a CloudFront distribution, S3 bucket, ELB, AWS Global Accelerator, or Route 53 hosted zone. See
resource_elb.zone_id
for an example.
RecordsExclusiveResourceRecordSetCidrRoutingConfig, RecordsExclusiveResourceRecordSetCidrRoutingConfigArgs
- Collection
Id string - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - Location
Name string - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
- Collection
Id string - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - Location
Name string - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
- collection
Id String - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - location
Name String - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
- collection
Id string - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - location
Name string - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
- collection_
id str - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - location_
name str - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
- collection
Id String - CIDR collection ID.
See the
aws.route53.CidrCollection
resource for more details. - location
Name String - CIDR collection location name.
See the
aws.route53.CidrLocation
resource for more details. Alocation_name
with an asterisk"*"
can be used to create a default CIDR record.collection_id
is still required for a default record.
RecordsExclusiveResourceRecordSetGeolocation, RecordsExclusiveResourceRecordSetGeolocationArgs
- Continent
Code string - Country
Code string - Subdivision
Code string
- Continent
Code string - Country
Code string - Subdivision
Code string
- continent
Code String - country
Code String - subdivision
Code String
- continent
Code string - country
Code string - subdivision
Code string
- continent_
code str - country_
code str - subdivision_
code str
- continent
Code String - country
Code String - subdivision
Code String
RecordsExclusiveResourceRecordSetGeoproximityLocation, RecordsExclusiveResourceRecordSetGeoproximityLocationArgs
- Aws
Region string - AWS region of the resource where DNS traffic is directed to.
- Bias int
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - Coordinates
Records
Exclusive Resource Record Set Geoproximity Location Coordinates - Coordinates for a geoproximity resource record.
See
coordinates
below. - Local
Zone stringGroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
- Aws
Region string - AWS region of the resource where DNS traffic is directed to.
- Bias int
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - Coordinates
Records
Exclusive Resource Record Set Geoproximity Location Coordinates - Coordinates for a geoproximity resource record.
See
coordinates
below. - Local
Zone stringGroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
- aws
Region String - AWS region of the resource where DNS traffic is directed to.
- bias Integer
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - coordinates
Records
Exclusive Resource Record Set Geoproximity Location Coordinates - Coordinates for a geoproximity resource record.
See
coordinates
below. - local
Zone StringGroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
- aws
Region string - AWS region of the resource where DNS traffic is directed to.
- bias number
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - coordinates
Records
Exclusive Resource Record Set Geoproximity Location Coordinates - Coordinates for a geoproximity resource record.
See
coordinates
below. - local
Zone stringGroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
- aws_
region str - AWS region of the resource where DNS traffic is directed to.
- bias int
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - coordinates
Records
Exclusive Resource Record Set Geoproximity Location Coordinates - Coordinates for a geoproximity resource record.
See
coordinates
below. - local_
zone_ strgroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
- aws
Region String - AWS region of the resource where DNS traffic is directed to.
- bias Number
- Increases or decreases the size of the geographic region from which Route 53 routes traffic to a resource.
To expand the size of the geographic region from which Route 53 routes traffic to a resource, specify a positive integer from
1
to99
. To shrink the size of the geographic region from which Route 53 routes traffic to a resource, specify a negative bias of-1
to-99
. See the AWS documentation for additional details. - coordinates Property Map
- Coordinates for a geoproximity resource record.
See
coordinates
below. - local
Zone StringGroup - AWS local zone group.
Identify the Local Zones Group for a specific Local Zone by using the
describe-availability-zones
CLI command.
RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinates, RecordsExclusiveResourceRecordSetGeoproximityLocationCoordinatesArgs
RecordsExclusiveResourceRecordSetResourceRecord, RecordsExclusiveResourceRecordSetResourceRecordArgs
- Value string
- DNS record value.
- Value string
- DNS record value.
- value String
- DNS record value.
- value string
- DNS record value.
- value str
- DNS record value.
- value String
- DNS record value.
RecordsExclusiveTimeouts, RecordsExclusiveTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.