Skip to content

Commit 96d1403

Browse files
author
awstools
committed
feat(client-route-53): Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets.
1 parent 308a75b commit 96d1403

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export interface ChangeResourceRecordSetsCommandOutput extends ChangeResourceRec
137137
* Type: "SOA" || "A" || "TXT" || "NS" || "CNAME" || "MX" || "NAPTR" || "PTR" || "SRV" || "SPF" || "AAAA" || "CAA" || "DS" || "TLSA" || "SSHFP" || "SVCB" || "HTTPS", // required
138138
* SetIdentifier: "STRING_VALUE",
139139
* Weight: Number("long"),
140-
* Region: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "ca-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "cn-north-1" || "cn-northwest-1" || "ap-east-1" || "me-south-1" || "me-central-1" || "ap-south-1" || "ap-south-2" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "ap-southeast-7",
140+
* Region: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "ca-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "cn-north-1" || "cn-northwest-1" || "ap-east-1" || "me-south-1" || "me-central-1" || "ap-south-1" || "ap-south-2" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "ap-southeast-7" || "us-gov-east-1" || "us-gov-west-1",
141141
* GeoLocation: { // GeoLocation
142142
* ContinentCode: "STRING_VALUE",
143143
* CountryCode: "STRING_VALUE",

clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export interface ListResourceRecordSetsCommandOutput extends ListResourceRecordS
125125
* // Type: "SOA" || "A" || "TXT" || "NS" || "CNAME" || "MX" || "NAPTR" || "PTR" || "SRV" || "SPF" || "AAAA" || "CAA" || "DS" || "TLSA" || "SSHFP" || "SVCB" || "HTTPS", // required
126126
* // SetIdentifier: "STRING_VALUE",
127127
* // Weight: Number("long"),
128-
* // Region: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "ca-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "cn-north-1" || "cn-northwest-1" || "ap-east-1" || "me-south-1" || "me-central-1" || "ap-south-1" || "ap-south-2" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "ap-southeast-7",
128+
* // Region: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "ca-central-1" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "cn-north-1" || "cn-northwest-1" || "ap-east-1" || "me-south-1" || "me-central-1" || "ap-south-1" || "ap-south-2" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "ap-southeast-7" || "us-gov-east-1" || "us-gov-west-1",
129129
* // GeoLocation: { // GeoLocation
130130
* // ContinentCode: "STRING_VALUE",
131131
* // CountryCode: "STRING_VALUE",

clients/client-route-53/src/models/models_0.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1476,6 +1476,8 @@ export const ResourceRecordSetRegion = {
14761476
sa_east_1: "sa-east-1",
14771477
us_east_1: "us-east-1",
14781478
us_east_2: "us-east-2",
1479+
us_gov_east_1: "us-gov-east-1",
1480+
us_gov_west_1: "us-gov-west-1",
14791481
us_west_1: "us-west-1",
14801482
us_west_2: "us-west-2",
14811483
} as const;

0 commit comments

Comments
 (0)