@pgarbe/cdk-ecr-sync 0.5.22 → 0.5.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/.gitattributes +19 -19
  2. package/.jsii +4 -4
  3. package/.projenrc.ts +2 -2
  4. package/lib/ecr-sync.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +21 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +327 -102
  8. package/node_modules/aws-sdk/apis/comprehendmedical-2018-10-30.min.json +244 -29
  9. package/node_modules/aws-sdk/apis/ec2-2016-11-15.waiters2.json +18 -0
  10. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +280 -271
  11. package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +235 -107
  12. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +4 -1
  13. package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +208 -11
  14. package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.paginators.json +6 -0
  15. package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +91 -45
  16. package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +74 -35
  17. package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +29 -0
  18. package/node_modules/aws-sdk/apis/route53-recovery-control-config-2020-11-02.min.json +137 -39
  19. package/node_modules/aws-sdk/apis/route53domains-2014-05-15.min.json +132 -22
  20. package/node_modules/aws-sdk/apis/route53domains-2014-05-15.paginators.json +12 -0
  21. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +31 -28
  22. package/node_modules/aws-sdk/clients/appsync.d.ts +330 -109
  23. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +6 -1
  24. package/node_modules/aws-sdk/clients/comprehendmedical.d.ts +306 -25
  25. package/node_modules/aws-sdk/clients/ec2.d.ts +9 -1
  26. package/node_modules/aws-sdk/clients/health.d.ts +2 -2
  27. package/node_modules/aws-sdk/clients/iot.d.ts +13 -0
  28. package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +57 -4
  29. package/node_modules/aws-sdk/clients/location.d.ts +139 -9
  30. package/node_modules/aws-sdk/clients/lookoutvision.d.ts +293 -23
  31. package/node_modules/aws-sdk/clients/networkfirewall.d.ts +68 -7
  32. package/node_modules/aws-sdk/clients/outposts.d.ts +47 -3
  33. package/node_modules/aws-sdk/clients/route53.d.ts +11 -11
  34. package/node_modules/aws-sdk/clients/route53domains.d.ts +179 -49
  35. package/node_modules/aws-sdk/clients/route53recoverycontrolconfig.d.ts +185 -78
  36. package/node_modules/aws-sdk/clients/sagemaker.d.ts +3 -1
  37. package/node_modules/aws-sdk/clients/savingsplans.d.ts +1 -1
  38. package/node_modules/aws-sdk/clients/sms.d.ts +31 -31
  39. package/node_modules/aws-sdk/clients/support.d.ts +62 -62
  40. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  41. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -16
  42. package/node_modules/aws-sdk/dist/aws-sdk.js +928 -433
  43. package/node_modules/aws-sdk/dist/aws-sdk.min.js +74 -74
  44. package/node_modules/aws-sdk/lib/core.js +1 -1
  45. package/node_modules/aws-sdk/package.json +1 -1
  46. package/package.json +10 -13
@@ -123,6 +123,14 @@ declare class NetworkFirewall extends Service {
123
123
  * Returns the data objects for the specified rule group.
124
124
  */
125
125
  describeRuleGroup(callback?: (err: AWSError, data: NetworkFirewall.Types.DescribeRuleGroupResponse) => void): Request<NetworkFirewall.Types.DescribeRuleGroupResponse, AWSError>;
126
+ /**
127
+ * High-level information about a rule group, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.
128
+ */
129
+ describeRuleGroupMetadata(params: NetworkFirewall.Types.DescribeRuleGroupMetadataRequest, callback?: (err: AWSError, data: NetworkFirewall.Types.DescribeRuleGroupMetadataResponse) => void): Request<NetworkFirewall.Types.DescribeRuleGroupMetadataResponse, AWSError>;
130
+ /**
131
+ * High-level information about a rule group, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.
132
+ */
133
+ describeRuleGroupMetadata(callback?: (err: AWSError, data: NetworkFirewall.Types.DescribeRuleGroupMetadataResponse) => void): Request<NetworkFirewall.Types.DescribeRuleGroupMetadataResponse, AWSError>;
126
134
  /**
127
135
  * Removes the specified subnet associations from the firewall. This removes the firewall endpoints from the subnets and removes any network filtering protections that the endpoints were providing.
128
136
  */
@@ -212,11 +220,11 @@ declare class NetworkFirewall extends Service {
212
220
  */
213
221
  updateFirewallPolicy(callback?: (err: AWSError, data: NetworkFirewall.Types.UpdateFirewallPolicyResponse) => void): Request<NetworkFirewall.Types.UpdateFirewallPolicyResponse, AWSError>;
214
222
  /**
215
- *
223
+ * Modifies the flag, ChangeProtection, which indicates whether it is possible to change the firewall. If the flag is set to TRUE, the firewall is protected from changes. This setting helps protect against accidentally changing a firewall that's in use.
216
224
  */
217
225
  updateFirewallPolicyChangeProtection(params: NetworkFirewall.Types.UpdateFirewallPolicyChangeProtectionRequest, callback?: (err: AWSError, data: NetworkFirewall.Types.UpdateFirewallPolicyChangeProtectionResponse) => void): Request<NetworkFirewall.Types.UpdateFirewallPolicyChangeProtectionResponse, AWSError>;
218
226
  /**
219
- *
227
+ * Modifies the flag, ChangeProtection, which indicates whether it is possible to change the firewall. If the flag is set to TRUE, the firewall is protected from changes. This setting helps protect against accidentally changing a firewall that's in use.
220
228
  */
221
229
  updateFirewallPolicyChangeProtection(callback?: (err: AWSError, data: NetworkFirewall.Types.UpdateFirewallPolicyChangeProtectionResponse) => void): Request<NetworkFirewall.Types.UpdateFirewallPolicyChangeProtectionResponse, AWSError>;
222
230
  /**
@@ -623,6 +631,43 @@ declare namespace NetworkFirewall {
623
631
  */
624
632
  Policy?: PolicyString;
625
633
  }
634
+ export interface DescribeRuleGroupMetadataRequest {
635
+ /**
636
+ * The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both.
637
+ */
638
+ RuleGroupName?: ResourceName;
639
+ /**
640
+ * The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both.
641
+ */
642
+ RuleGroupArn?: ResourceArn;
643
+ /**
644
+ * Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. This setting is required for requests that do not include the RuleGroupARN.
645
+ */
646
+ Type?: RuleGroupType;
647
+ }
648
+ export interface DescribeRuleGroupMetadataResponse {
649
+ /**
650
+ * The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both.
651
+ */
652
+ RuleGroupArn: ResourceArn;
653
+ /**
654
+ * The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both.
655
+ */
656
+ RuleGroupName: ResourceName;
657
+ /**
658
+ * Returns the metadata objects for the specified rule group.
659
+ */
660
+ Description?: Description;
661
+ /**
662
+ * Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. This setting is required for requests that do not include the RuleGroupARN.
663
+ */
664
+ Type?: RuleGroupType;
665
+ /**
666
+ * The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with DryRun set to TRUE.
667
+ */
668
+ Capacity?: RuleCapacity;
669
+ StatefulRuleOptions?: StatefulRuleOptions;
670
+ }
626
671
  export interface DescribeRuleGroupRequest {
627
672
  /**
628
673
  * The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both.
@@ -777,7 +822,7 @@ declare namespace NetworkFirewall {
777
822
  */
778
823
  StatefulRuleGroupReferences?: StatefulRuleGroupReferences;
779
824
  /**
780
- * The default actions to take on a packet that doesn't match any stateful rules.
825
+ * The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order. Valid values of the stateful default action: aws:drop_strict aws:drop_established aws:alert_strict aws:alert_established For more information, see Strict evaluation order in the AWS Network Firewall Developer Guide.
781
826
  */
782
827
  StatefulDefaultActions?: StatefulActions;
783
828
  /**
@@ -940,6 +985,10 @@ declare namespace NetworkFirewall {
940
985
  * The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a NextToken value that you can use in a subsequent call to get the next batch of objects.
941
986
  */
942
987
  MaxResults?: PaginationMaxResults;
988
+ /**
989
+ * The scope of the request. The default setting of ACCOUNT or a setting of NULL returns all of the rule groups in your account. A setting of MANAGED returns all available managed rule groups.
990
+ */
991
+ Scope?: ResourceManagedStatus;
943
992
  }
944
993
  export interface ListRuleGroupsResponse {
945
994
  /**
@@ -1026,6 +1075,7 @@ declare namespace NetworkFirewall {
1026
1075
  TCPFlags?: TCPFlags;
1027
1076
  }
1028
1077
  export type NumberOfAssociations = number;
1078
+ export type OverrideAction = "DROP_TO_ALERT"|string;
1029
1079
  export type PaginationMaxResults = number;
1030
1080
  export type PaginationToken = string;
1031
1081
  export interface PerObjectStatus {
@@ -1083,6 +1133,7 @@ declare namespace NetworkFirewall {
1083
1133
  }
1084
1134
  export type ResourceArn = string;
1085
1135
  export type ResourceId = string;
1136
+ export type ResourceManagedStatus = "MANAGED"|"ACCOUNT"|string;
1086
1137
  export type ResourceName = string;
1087
1138
  export type ResourceStatus = "ACTIVE"|"DELETING"|string;
1088
1139
  export type RuleCapacity = number;
@@ -1208,7 +1259,7 @@ declare namespace NetworkFirewall {
1208
1259
  }
1209
1260
  export interface RulesSourceList {
1210
1261
  /**
1211
- * The domains that you want to inspect for in your traffic flows. To provide multiple domains, separate them with commas. Valid domain specifications are the following: Explicit names. For example, abc.example.com matches only the domain abc.example.com. Names that use a domain wildcard, which you indicate with an initial '.'. For example,.example.com matches example.com and matches all subdomains of example.com, such as abc.example.com and www.example.com.
1262
+ * The domains that you want to inspect for in your traffic flows. Valid domain specifications are the following: Explicit names. For example, abc.example.com matches only the domain abc.example.com. Names that use a domain wildcard, which you indicate with an initial '.'. For example,.example.com matches example.com and matches all subdomains of example.com, such as abc.example.com and www.example.com.
1212
1263
  */
1213
1264
  Targets: RuleTargets;
1214
1265
  /**
@@ -1228,7 +1279,7 @@ declare namespace NetworkFirewall {
1228
1279
  export type StatefulActions = CollectionMember_String[];
1229
1280
  export interface StatefulEngineOptions {
1230
1281
  /**
1231
- * Indicates how to manage the order of stateful rule evaluation for the policy. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that you provide them in the policy. With strict ordering, the rule groups are evaluated by order of priority, starting from the lowest number, and the rules in each rule group are processed in the order that they're defined.
1282
+ * Indicates how to manage the order of stateful rule evaluation for the policy. DEFAULT_ACTION_ORDER is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the AWS Network Firewall Developer Guide.
1232
1283
  */
1233
1284
  RuleOrder?: RuleOrder;
1234
1285
  }
@@ -1247,6 +1298,12 @@ declare namespace NetworkFirewall {
1247
1298
  RuleOptions: RuleOptions;
1248
1299
  }
1249
1300
  export type StatefulRuleDirection = "FORWARD"|"ANY"|string;
1301
+ export interface StatefulRuleGroupOverride {
1302
+ /**
1303
+ * The action that changes the rule group from DROP to ALERT. This only applies to managed rule groups.
1304
+ */
1305
+ Action?: OverrideAction;
1306
+ }
1250
1307
  export interface StatefulRuleGroupReference {
1251
1308
  /**
1252
1309
  * The Amazon Resource Name (ARN) of the stateful rule group.
@@ -1256,11 +1313,15 @@ declare namespace NetworkFirewall {
1256
1313
  * An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy. This setting only applies to firewall policies that specify the STRICT_ORDER rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on.
1257
1314
  */
1258
1315
  Priority?: Priority;
1316
+ /**
1317
+ * The action that allows the policy owner to override the behavior of the rule group within a policy.
1318
+ */
1319
+ Override?: StatefulRuleGroupOverride;
1259
1320
  }
1260
1321
  export type StatefulRuleGroupReferences = StatefulRuleGroupReference[];
1261
1322
  export interface StatefulRuleOptions {
1262
1323
  /**
1263
- * Indicates how to manage the order of the rule evaluation for the rule group. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that they're listed in your Suricata rules string.
1324
+ * Indicates how to manage the order of the rule evaluation for the rule group. DEFAULT_ACTION_ORDER is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the AWS Network Firewall Developer Guide.
1264
1325
  */
1265
1326
  RuleOrder?: RuleOrder;
1266
1327
  }
@@ -1399,7 +1460,7 @@ declare namespace NetworkFirewall {
1399
1460
  */
1400
1461
  FirewallName?: ResourceName;
1401
1462
  /**
1402
- *
1463
+ * A flag indicating whether it is possible to delete the firewall. A setting of TRUE indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to TRUE.
1403
1464
  */
1404
1465
  DeleteProtection?: Boolean;
1405
1466
  /**
@@ -163,6 +163,14 @@ declare class Outposts extends Service {
163
163
  * Removes tags from the specified resource.
164
164
  */
165
165
  untagResource(callback?: (err: AWSError, data: Outposts.Types.UntagResourceResponse) => void): Request<Outposts.Types.UntagResourceResponse, AWSError>;
166
+ /**
167
+ * Updates an Outpost.
168
+ */
169
+ updateOutpost(params: Outposts.Types.UpdateOutpostInput, callback?: (err: AWSError, data: Outposts.Types.UpdateOutpostOutput) => void): Request<Outposts.Types.UpdateOutpostOutput, AWSError>;
170
+ /**
171
+ * Updates an Outpost.
172
+ */
173
+ updateOutpost(callback?: (err: AWSError, data: Outposts.Types.UpdateOutpostOutput) => void): Request<Outposts.Types.UpdateOutpostOutput, AWSError>;
166
174
  /**
167
175
  * Updates the site.
168
176
  */
@@ -320,6 +328,9 @@ declare namespace Outposts {
320
328
  export interface CreateOutpostInput {
321
329
  Name: OutpostName;
322
330
  Description?: OutpostDescription;
331
+ /**
332
+ * The ID or the Amazon Resource Name (ARN) of the site.
333
+ */
323
334
  SiteId: SiteId;
324
335
  AvailabilityZone?: AvailabilityZone;
325
336
  AvailabilityZoneId?: AvailabilityZoneId;
@@ -364,13 +375,16 @@ declare namespace Outposts {
364
375
  }
365
376
  export interface DeleteOutpostInput {
366
377
  /**
367
- * The ID of the Outpost.
378
+ * The ID or the Amazon Resource Name (ARN) of the Outpost.
368
379
  */
369
380
  OutpostId: OutpostId;
370
381
  }
371
382
  export interface DeleteOutpostOutput {
372
383
  }
373
384
  export interface DeleteSiteInput {
385
+ /**
386
+ * The ID or the Amazon Resource Name (ARN) of the site.
387
+ */
374
388
  SiteId: SiteId;
375
389
  }
376
390
  export interface DeleteSiteOutput {
@@ -417,13 +431,13 @@ declare namespace Outposts {
417
431
  }
418
432
  export interface GetOutpostInput {
419
433
  /**
420
- * The ID of the Outpost.
434
+ * The ID or the Amazon Resource Name (ARN) of the Outpost.
421
435
  */
422
436
  OutpostId: OutpostId;
423
437
  }
424
438
  export interface GetOutpostInstanceTypesInput {
425
439
  /**
426
- * The ID of the Outpost.
440
+ * The ID or the Amazon Resource Name (ARN) of the Outpost.
427
441
  */
428
442
  OutpostId: OutpostId;
429
443
  NextToken?: Token;
@@ -442,6 +456,9 @@ declare namespace Outposts {
442
456
  Outpost?: Outpost;
443
457
  }
444
458
  export interface GetSiteAddressInput {
459
+ /**
460
+ * The ID or the Amazon Resource Name (ARN) of the site.
461
+ */
445
462
  SiteId: SiteId;
446
463
  /**
447
464
  * The type of the address you request.
@@ -460,6 +477,9 @@ declare namespace Outposts {
460
477
  Address?: Address;
461
478
  }
462
479
  export interface GetSiteInput {
480
+ /**
481
+ * The ID or the Amazon Resource Name (ARN) of the site.
482
+ */
463
483
  SiteId: SiteId;
464
484
  }
465
485
  export interface GetSiteOutput {
@@ -802,7 +822,25 @@ declare namespace Outposts {
802
822
  }
803
823
  export interface UntagResourceResponse {
804
824
  }
825
+ export interface UpdateOutpostInput {
826
+ /**
827
+ * The ID or the Amazon Resource Name (ARN) of the Outpost.
828
+ */
829
+ OutpostId: OutpostId;
830
+ Name?: OutpostName;
831
+ Description?: OutpostDescription;
832
+ /**
833
+ * The type of hardware for this Outpost.
834
+ */
835
+ SupportedHardwareType?: SupportedHardwareType;
836
+ }
837
+ export interface UpdateOutpostOutput {
838
+ Outpost?: Outpost;
839
+ }
805
840
  export interface UpdateSiteAddressInput {
841
+ /**
842
+ * The ID or the Amazon Resource Name (ARN) of the site.
843
+ */
806
844
  SiteId: SiteId;
807
845
  /**
808
846
  * The type of the address.
@@ -824,6 +862,9 @@ declare namespace Outposts {
824
862
  Address?: Address;
825
863
  }
826
864
  export interface UpdateSiteInput {
865
+ /**
866
+ * The ID or the Amazon Resource Name (ARN) of the site.
867
+ */
827
868
  SiteId: SiteId;
828
869
  Name?: SiteName;
829
870
  Description?: SiteDescription;
@@ -836,6 +877,9 @@ declare namespace Outposts {
836
877
  Site?: Site;
837
878
  }
838
879
  export interface UpdateSiteRackPhysicalPropertiesInput {
880
+ /**
881
+ * The ID or the Amazon Resource Name (ARN) of the site.
882
+ */
839
883
  SiteId: SiteId;
840
884
  /**
841
885
  * Specify in kVA the power draw available at the hardware placement position for the rack.
@@ -141,11 +141,11 @@ declare class Route53 extends Service {
141
141
  */
142
142
  deleteHostedZone(callback?: (err: AWSError, data: Route53.Types.DeleteHostedZoneResponse) => void): Request<Route53.Types.DeleteHostedZoneResponse, AWSError>;
143
143
  /**
144
- * Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing.
144
+ * Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing. You can use DeactivateKeySigningKey to deactivate the key before you delete it. Use GetDNSSEC to verify that the KSK is in an INACTIVE status.
145
145
  */
146
146
  deleteKeySigningKey(params: Route53.Types.DeleteKeySigningKeyRequest, callback?: (err: AWSError, data: Route53.Types.DeleteKeySigningKeyResponse) => void): Request<Route53.Types.DeleteKeySigningKeyResponse, AWSError>;
147
147
  /**
148
- * Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing.
148
+ * Deletes a key-signing key (KSK). Before you can delete a KSK, you must deactivate it. The KSK must be deactivated before you can delete it regardless of whether the hosted zone is enabled for DNSSEC signing. You can use DeactivateKeySigningKey to deactivate the key before you delete it. Use GetDNSSEC to verify that the KSK is in an INACTIVE status.
149
149
  */
150
150
  deleteKeySigningKey(callback?: (err: AWSError, data: Route53.Types.DeleteKeySigningKeyResponse) => void): Request<Route53.Types.DeleteKeySigningKeyResponse, AWSError>;
151
151
  /**
@@ -720,7 +720,7 @@ declare namespace Route53 {
720
720
  Dimensions?: DimensionList;
721
721
  }
722
722
  export type CloudWatchLogsLogGroupArn = string;
723
- export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"ap-south-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"cn-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-isob-east-1"|string;
723
+ export type CloudWatchRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"ap-east-1"|"me-south-1"|"ap-south-1"|"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-northwest-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|string;
724
724
  export type ComparisonOperator = "GreaterThanOrEqualToThreshold"|"GreaterThanThreshold"|"LessThanThreshold"|"LessThanOrEqualToThreshold"|string;
725
725
  export interface CreateHealthCheckRequest {
726
726
  /**
@@ -748,7 +748,7 @@ declare namespace Route53 {
748
748
  */
749
749
  Name: DNSName;
750
750
  /**
751
- * (Private hosted zones only) A complex type that contains information about the Amazon VPC that you're associating with this hosted zone. You can specify only one Amazon VPC when you create a private hosted zone. To associate additional Amazon VPCs with the hosted zone, use AssociateVPCWithHostedZone after you create a hosted zone.
751
+ * (Private hosted zones only) A complex type that contains information about the Amazon VPC that you're associating with this hosted zone. You can specify only one Amazon VPC when you create a private hosted zone. If you are associating a VPC with a hosted zone with this request, the paramaters VPCId and VPCRegion are also required. To associate additional Amazon VPCs with the hosted zone, use AssociateVPCWithHostedZone after you create a hosted zone.
752
752
  */
753
753
  VPC?: VPC;
754
754
  /**
@@ -796,7 +796,7 @@ declare namespace Route53 {
796
796
  */
797
797
  HostedZoneId: ResourceId;
798
798
  /**
799
- * The Amazon resource name (ARN) for a customer managed customer master key (CMK) in Key Management Service (KMS). The KeyManagementServiceArn must be unique for each key-signing key (KSK) in a single hosted zone. To see an example of KeyManagementServiceArn that grants the correct permissions for DNSSEC, scroll down to Example. You must configure the customer managed CMK as follows: Status Enabled Key spec ECC_NIST_P256 Key usage Sign and verify Key policy The key policy must give permission for the following actions: DescribeKey GetPublicKey Sign The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following: "Service": "dnssec-route53.amazonaws.com" For more information about working with a customer managed CMK in KMS, see Key Management Service concepts.
799
+ * The Amazon resource name (ARN) for a customer managed key in Key Management Service (KMS). The KeyManagementServiceArn must be unique for each key-signing key (KSK) in a single hosted zone. To see an example of KeyManagementServiceArn that grants the correct permissions for DNSSEC, scroll down to Example. You must configure the customer managed customer managed key as follows: Status Enabled Key spec ECC_NIST_P256 Key usage Sign and verify Key policy The key policy must give permission for the following actions: DescribeKey GetPublicKey Sign The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following: "Service": "dnssec-route53.amazonaws.com" For more information about working with a customer managed key in KMS, see Key Management Service concepts.
800
800
  */
801
801
  KeyManagementServiceArn: SigningKeyString;
802
802
  /**
@@ -963,7 +963,7 @@ declare namespace Route53 {
963
963
  export type DNSRCode = string;
964
964
  export interface DNSSECStatus {
965
965
  /**
966
- * A string that represents the current hosted zone signing status. Status can have one of the following values: SIGNING DNSSEC signing is enabled for the hosted zone. NOT_SIGNING DNSSEC signing is not enabled for the hosted zone. DELETING DNSSEC signing is in the process of being removed for the hosted zone. ACTION_NEEDED There is a problem with signing in the hosted zone that requires you to take action to resolve. For example, the customer managed customer master key (CMK) might have been deleted, or the permissions for the customer managed CMK might have been changed. INTERNAL_FAILURE There was an error during a request. Before you can continue to work with DNSSEC signing, including with key-signing keys (KSKs), you must correct the problem by enabling or disabling DNSSEC signing for the hosted zone.
966
+ * A string that represents the current hosted zone signing status. Status can have one of the following values: SIGNING DNSSEC signing is enabled for the hosted zone. NOT_SIGNING DNSSEC signing is not enabled for the hosted zone. DELETING DNSSEC signing is in the process of being removed for the hosted zone. ACTION_NEEDED There is a problem with signing in the hosted zone that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed. INTERNAL_FAILURE There was an error during a request. Before you can continue to work with DNSSEC signing, including with key-signing keys (KSKs), you must correct the problem by enabling or disabling DNSSEC signing for the hosted zone.
967
967
  */
968
968
  ServeSignature?: ServeSignature;
969
969
  /**
@@ -1639,7 +1639,7 @@ declare namespace Route53 {
1639
1639
  */
1640
1640
  Name?: SigningKeyName;
1641
1641
  /**
1642
- * The Amazon resource name (ARN) used to identify the customer managed customer master key (CMK) in Key Management Service (KMS). The KmsArn must be unique for each key-signing key (KSK) in a single hosted zone. You must configure the CMK as follows: Status Enabled Key spec ECC_NIST_P256 Key usage Sign and verify Key policy The key policy must give permission for the following actions: DescribeKey GetPublicKey Sign The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following: "Service": "dnssec-route53.amazonaws.com" For more information about working with the customer managed CMK in KMS, see Key Management Service concepts.
1642
+ * The Amazon resource name (ARN) used to identify the customer managed key in Key Management Service (KMS). The KmsArn must be unique for each key-signing key (KSK) in a single hosted zone. You must configure the customer managed key as follows: Status Enabled Key spec ECC_NIST_P256 Key usage Sign and verify Key policy The key policy must give permission for the following actions: DescribeKey GetPublicKey Sign The key policy must also include the Amazon Route 53 service in the principal for your account. Specify the following: "Service": "dnssec-route53.amazonaws.com" For more information about working with the customer managed key in KMS, see Key Management Service concepts.
1643
1643
  */
1644
1644
  KmsArn?: SigningKeyString;
1645
1645
  /**
@@ -1683,7 +1683,7 @@ declare namespace Route53 {
1683
1683
  */
1684
1684
  DNSKEYRecord?: SigningKeyString;
1685
1685
  /**
1686
- * A string that represents the current key-signing key (KSK) status. Status can have one of the following values: ACTIVE The KSK is being used for signing. INACTIVE The KSK is not being used for signing. DELETING The KSK is in the process of being deleted. ACTION_NEEDED There is a problem with the KSK that requires you to take action to resolve. For example, the customer managed customer master key (CMK) might have been deleted, or the permissions for the customer managed CMK might have been changed. INTERNAL_FAILURE There was an error during a request. Before you can continue to work with DNSSEC signing, including actions that involve this KSK, you must correct the problem. For example, you may need to activate or deactivate the KSK.
1686
+ * A string that represents the current key-signing key (KSK) status. Status can have one of the following values: ACTIVE The KSK is being used for signing. INACTIVE The KSK is not being used for signing. DELETING The KSK is in the process of being deleted. ACTION_NEEDED There is a problem with the KSK that requires you to take action to resolve. For example, the customer managed key might have been deleted, or the permissions for the customer managed key might have been changed. INTERNAL_FAILURE There was an error during a request. Before you can continue to work with DNSSEC signing, including actions that involve this KSK, you must correct the problem. For example, you may need to activate or deactivate the KSK.
1687
1687
  */
1688
1688
  Status?: SigningKeyStatus;
1689
1689
  /**
@@ -2361,7 +2361,7 @@ declare namespace Route53 {
2361
2361
  export type ResourceRecordSetFailover = "PRIMARY"|"SECONDARY"|string;
2362
2362
  export type ResourceRecordSetIdentifier = string;
2363
2363
  export type ResourceRecordSetMultiValueAnswer = boolean;
2364
- export type ResourceRecordSetRegion = "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"|"ap-southeast-1"|"ap-southeast-2"|"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"|"ap-south-1"|"af-south-1"|"eu-south-1"|string;
2364
+ export type ResourceRecordSetRegion = "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"|"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"|"ap-south-1"|"af-south-1"|"eu-south-1"|string;
2365
2365
  export type ResourceRecordSetWeight = number;
2366
2366
  export type ResourceRecordSets = ResourceRecordSet[];
2367
2367
  export type ResourceRecords = ResourceRecord[];
@@ -2648,7 +2648,7 @@ declare namespace Route53 {
2648
2648
  */
2649
2649
  AlarmIdentifier?: AlarmIdentifier;
2650
2650
  /**
2651
- * When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check: Healthy: Route 53 considers the health check to be healthy. Unhealthy: Route 53 considers the health check to be unhealthy. LastKnownStatus: Route 53 uses the status of the health check from the last time CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the default status for the health check is healthy.
2651
+ * When CloudWatch has insufficient data about the metric to determine the alarm state, the status that you want Amazon Route 53 to assign to the health check: Healthy: Route 53 considers the health check to be healthy. Unhealthy: Route 53 considers the health check to be unhealthy. LastKnownStatus: By default, Route 53 uses the status of the health check from the last time CloudWatch had sufficient data to determine the alarm state. For new health checks that have no last known status, the status for the health check is healthy.
2652
2652
  */
2653
2653
  InsufficientDataHealthStatus?: InsufficientDataHealthStatus;
2654
2654
  /**
@@ -2731,7 +2731,7 @@ declare namespace Route53 {
2731
2731
  VPCId?: VPCId;
2732
2732
  }
2733
2733
  export type VPCId = string;
2734
- export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-isob-east-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|string;
2734
+ export type VPCRegion = "us-east-1"|"us-east-2"|"us-west-1"|"us-west-2"|"eu-west-1"|"eu-west-2"|"eu-west-3"|"eu-central-1"|"ap-east-1"|"me-south-1"|"us-gov-west-1"|"us-gov-east-1"|"us-iso-east-1"|"us-iso-west-1"|"us-isob-east-1"|"ap-southeast-1"|"ap-southeast-2"|"ap-southeast-3"|"ap-south-1"|"ap-northeast-1"|"ap-northeast-2"|"ap-northeast-3"|"eu-north-1"|"sa-east-1"|"ca-central-1"|"cn-north-1"|"af-south-1"|"eu-south-1"|string;
2735
2735
  export type VPCs = VPC[];
2736
2736
  /**
2737
2737
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.