aws-cdk-lib.aws_route53.CfnRecordSet.GeoLocationProperty

interface GeoLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.Route53.CfnRecordSet.GeoLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsroute53#CfnRecordSet_GeoLocationProperty
Javasoftware.amazon.awscdk.services.route53.CfnRecordSet.GeoLocationProperty
Pythonaws_cdk.aws_route53.CfnRecordSet.GeoLocationProperty
TypeScript aws-cdk-lib » aws_route53 » CfnRecordSet » GeoLocationProperty

A complex type that contains information about a geographic location.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as route53 } from 'aws-cdk-lib';
const geoLocationProperty: route53.CfnRecordSet.GeoLocationProperty = {
  continentCode: 'continentCode',
  countryCode: 'countryCode',
  subdivisionCode: 'subdivisionCode',
};

Properties

NameTypeDescription
continentCode?stringFor geolocation resource record sets, a two-letter abbreviation that identifies a continent. Route 53 supports the following continent codes:.
countryCode?stringFor geolocation resource record sets, the two-letter code for a country.
subdivisionCode?stringFor geolocation resource record sets, the two-letter code for a state of the United States.

continentCode?

Type: string (optional)

For geolocation resource record sets, a two-letter abbreviation that identifies a continent. Route 53 supports the following continent codes:.

  • AF : Africa
  • AN : Antarctica
  • AS : Asia
  • EU : Europe
  • OC : Oceania
  • NA : North America
  • SA : South America

Constraint: Specifying ContinentCode with either CountryCode or SubdivisionCode returns an InvalidInput error.


countryCode?

Type: string (optional)

For geolocation resource record sets, the two-letter code for a country.

Route 53 uses the two-letter country codes that are specified in ISO standard 3166-1 alpha-2 .


subdivisionCode?

Type: string (optional)

For geolocation resource record sets, the two-letter code for a state of the United States.

Route 53 doesn't support any other values for SubdivisionCode . For a list of state abbreviations, see Appendix B: Two–Letter State and Possession Abbreviations on the United States Postal Service website.

If you specify subdivisioncode , you must also specify US for CountryCode .