@cdklabs/cdk-ecs-codedeploy 0.0.12 → 0.0.13

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 (29) hide show
  1. package/.jsii +3 -3
  2. package/lib/ecs-appspec/index.js +1 -1
  3. package/lib/ecs-deployment/index.js +1 -1
  4. package/node_modules/aws-sdk/CHANGELOG.md +12 -1
  5. package/node_modules/aws-sdk/README.md +1 -1
  6. package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +6 -0
  7. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +90 -83
  8. package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +3 -0
  9. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +2 -1
  10. package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +247 -201
  11. package/node_modules/aws-sdk/apis/nimble-2020-08-01.min.json +283 -140
  12. package/node_modules/aws-sdk/apis/nimble-2020-08-01.paginators.json +5 -0
  13. package/node_modules/aws-sdk/apis/route53domains-2014-05-15.min.json +159 -91
  14. package/node_modules/aws-sdk/clients/batch.d.ts +13 -5
  15. package/node_modules/aws-sdk/clients/ec2.d.ts +52 -38
  16. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +4 -0
  17. package/node_modules/aws-sdk/clients/medialive.d.ts +47 -4
  18. package/node_modules/aws-sdk/clients/nimble.d.ts +319 -123
  19. package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +6 -6
  20. package/node_modules/aws-sdk/clients/route53domains.d.ts +227 -37
  21. package/node_modules/aws-sdk/clients/sagemaker.d.ts +9 -9
  22. package/node_modules/aws-sdk/clients/transcribeservice.d.ts +1 -1
  23. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  24. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +9 -9
  25. package/node_modules/aws-sdk/dist/aws-sdk.js +255 -177
  26. package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
  27. package/node_modules/aws-sdk/lib/core.js +1 -1
  28. package/node_modules/aws-sdk/package.json +1 -1
  29. package/package.json +4 -4
@@ -44,11 +44,11 @@ declare class ResourceExplorer2 extends Service {
44
44
  */
45
45
  createView(callback?: (err: AWSError, data: ResourceExplorer2.Types.CreateViewOutput) => void): Request<ResourceExplorer2.Types.CreateViewOutput, AWSError>;
46
46
  /**
47
- * Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region. When you delete an index, Resource Explorer stops discovering and indexing resources in that Region. Resource Explorer also deletes all views in that Region. These actions occur as asynchronous background tasks. You can check to see when the actions are complete by using the GetIndex operation and checking the Status response value.
47
+ * Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region. When you delete an index, Resource Explorer stops discovering and indexing resources in that Region. Resource Explorer also deletes all views in that Region. These actions occur as asynchronous background tasks. You can check to see when the actions are complete by using the GetIndex operation and checking the Status response value. If the index you delete is the aggregator index for the Amazon Web Services account, you must wait 24 hours before you can promote another local index to be the aggregator index for the account. Users can't perform account-wide searches using Resource Explorer until another aggregator index is configured.
48
48
  */
49
49
  deleteIndex(params: ResourceExplorer2.Types.DeleteIndexInput, callback?: (err: AWSError, data: ResourceExplorer2.Types.DeleteIndexOutput) => void): Request<ResourceExplorer2.Types.DeleteIndexOutput, AWSError>;
50
50
  /**
51
- * Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region. When you delete an index, Resource Explorer stops discovering and indexing resources in that Region. Resource Explorer also deletes all views in that Region. These actions occur as asynchronous background tasks. You can check to see when the actions are complete by using the GetIndex operation and checking the Status response value.
51
+ * Deletes the specified index and turns off Amazon Web Services Resource Explorer in the specified Amazon Web Services Region. When you delete an index, Resource Explorer stops discovering and indexing resources in that Region. Resource Explorer also deletes all views in that Region. These actions occur as asynchronous background tasks. You can check to see when the actions are complete by using the GetIndex operation and checking the Status response value. If the index you delete is the aggregator index for the Amazon Web Services account, you must wait 24 hours before you can promote another local index to be the aggregator index for the account. Users can't perform account-wide searches using Resource Explorer until another aggregator index is configured.
52
52
  */
53
53
  deleteIndex(callback?: (err: AWSError, data: ResourceExplorer2.Types.DeleteIndexOutput) => void): Request<ResourceExplorer2.Types.DeleteIndexOutput, AWSError>;
54
54
  /**
@@ -303,15 +303,15 @@ declare namespace ResourceExplorer2 {
303
303
  */
304
304
  LastUpdatedAt?: SyntheticTimestamp_date_time;
305
305
  /**
306
- * If this index is Type=AGGREGATOR, then this response value contains a list of the Amazon Web Services Regions that replicate their content to the index in this Region. Not present for a local index.
306
+ * This response value is present only if this index is Type=AGGREGATOR. A list of the Amazon Web Services Regions that replicate their content to the index in this Region.
307
307
  */
308
308
  ReplicatingFrom?: RegionList;
309
309
  /**
310
- * Identifies the Amazon Web Services Region that has an index set to Type=AGGREGATOR, if one exists. If it does, then the Region you called this operation in replicates its index information to the Region specified in this response value. Not present if there isn't an aggregator index in the account.
310
+ * This response value is present only if this index is Type=LOCAL. The Amazon Web Services Region that contains the aggregator index, if one exists. If an aggregator index does exist then the Region in which you called this operation replicates its index information to the Region specified in this response value.
311
311
  */
312
312
  ReplicatingTo?: RegionList;
313
313
  /**
314
- * Indicates the current state of the index in this Amazon Web Services Region.
314
+ * The current state of the index in this Amazon Web Services Region.
315
315
  */
316
316
  State?: IndexState;
317
317
  /**
@@ -319,7 +319,7 @@ declare namespace ResourceExplorer2 {
319
319
  */
320
320
  Tags?: TagMap;
321
321
  /**
322
- * Specifies the type of the index in this Region. For information about the aggregator index and how it differs from a local index, see Turning on cross-Region search by creating an aggregator index.
322
+ * The type of the index in this Region. For information about the aggregator index and how it differs from a local index, see Turning on cross-Region search by creating an aggregator index.
323
323
  */
324
324
  Type?: IndexType;
325
325
  }
@@ -19,6 +19,14 @@ declare class Route53Domains extends Service {
19
19
  * Accepts the transfer of a domain from another Amazon Web Services account to the currentAmazon Web Services account. You initiate a transfer between Amazon Web Services accounts using TransferDomainToAnotherAwsAccount. If you use the CLI command at accept-domain-transfer-from-another-aws-account, use JSON format as input instead of text because otherwise CLI will throw an error from domain transfer input that includes single quotes. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
20
20
  */
21
21
  acceptDomainTransferFromAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.AcceptDomainTransferFromAnotherAwsAccountResponse, AWSError>;
22
+ /**
23
+ * Creates a delegation signer (DS) record in the registry zone for this domain name. Note that creating DS record at the registry impacts DNSSEC validation of your DNS records. This action may render your domain name unavailable on the internet if the steps are completed in the wrong order, or with incorrect timing. For more information about DNSSEC signing, see Configuring DNSSEC signing in the Route 53 developer guide.
24
+ */
25
+ associateDelegationSignerToDomain(params: Route53Domains.Types.AssociateDelegationSignerToDomainRequest, callback?: (err: AWSError, data: Route53Domains.Types.AssociateDelegationSignerToDomainResponse) => void): Request<Route53Domains.Types.AssociateDelegationSignerToDomainResponse, AWSError>;
26
+ /**
27
+ * Creates a delegation signer (DS) record in the registry zone for this domain name. Note that creating DS record at the registry impacts DNSSEC validation of your DNS records. This action may render your domain name unavailable on the internet if the steps are completed in the wrong order, or with incorrect timing. For more information about DNSSEC signing, see Configuring DNSSEC signing in the Route 53 developer guide.
28
+ */
29
+ associateDelegationSignerToDomain(callback?: (err: AWSError, data: Route53Domains.Types.AssociateDelegationSignerToDomainResponse) => void): Request<Route53Domains.Types.AssociateDelegationSignerToDomainResponse, AWSError>;
22
30
  /**
23
31
  * Cancels the transfer of a domain from the current Amazon Web Services account to another Amazon Web Services account. You initiate a transfer betweenAmazon Web Services accounts using TransferDomainToAnotherAwsAccount. You must cancel the transfer before the other Amazon Web Services account accepts the transfer using AcceptDomainTransferFromAnotherAwsAccount. Use either ListOperations or GetOperationDetail to determine whether the operation succeeded. GetOperationDetail provides additional information, for example, Domain Transfer from Aws Account 111122223333 has been cancelled.
24
32
  */
@@ -75,6 +83,14 @@ declare class Route53Domains extends Service {
75
83
  * This operation removes the transfer lock on the domain (specifically the clientTransferProhibited status) to allow domain transfers. We recommend you refrain from performing this action unless you intend to transfer the domain to a different registrar. Successful submission returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
76
84
  */
77
85
  disableDomainTransferLock(callback?: (err: AWSError, data: Route53Domains.Types.DisableDomainTransferLockResponse) => void): Request<Route53Domains.Types.DisableDomainTransferLockResponse, AWSError>;
86
+ /**
87
+ * Deletes a delegation signer (DS) record in the registry zone for this domain name.
88
+ */
89
+ disassociateDelegationSignerFromDomain(params: Route53Domains.Types.DisassociateDelegationSignerFromDomainRequest, callback?: (err: AWSError, data: Route53Domains.Types.DisassociateDelegationSignerFromDomainResponse) => void): Request<Route53Domains.Types.DisassociateDelegationSignerFromDomainResponse, AWSError>;
90
+ /**
91
+ * Deletes a delegation signer (DS) record in the registry zone for this domain name.
92
+ */
93
+ disassociateDelegationSignerFromDomain(callback?: (err: AWSError, data: Route53Domains.Types.DisassociateDelegationSignerFromDomainResponse) => void): Request<Route53Domains.Types.DisassociateDelegationSignerFromDomainResponse, AWSError>;
78
94
  /**
79
95
  * This operation configures Amazon Route 53 to automatically renew the specified domain before the domain registration expires. The cost of renewing your domain registration is billed to your Amazon Web Services account. The period during which you can renew a domain name varies by TLD. For a list of TLDs and their renewal policies, see Domains That You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide. Route 53 requires that you renew before the end of the renewal period so we can complete processing before the deadline.
80
96
  */
@@ -156,11 +172,19 @@ declare class Route53Domains extends Service {
156
172
  */
157
173
  listTagsForDomain(callback?: (err: AWSError, data: Route53Domains.Types.ListTagsForDomainResponse) => void): Request<Route53Domains.Types.ListTagsForDomainResponse, AWSError>;
158
174
  /**
159
- * This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the administrative, registrant, and technical contacts. You must specify the same privacy setting for the administrative, registrant, and technical contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your Amazon Web Services account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
175
+ * Moves a domain from Amazon Web Services to another registrar. Supported actions: Changes the IPS tags of a .uk domain, and pushes it to transit. Transit means that the domain is ready to be transferred to another registrar.
176
+ */
177
+ pushDomain(params: Route53Domains.Types.PushDomainRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
178
+ /**
179
+ * Moves a domain from Amazon Web Services to another registrar. Supported actions: Changes the IPS tags of a .uk domain, and pushes it to transit. Transit means that the domain is ready to be transferred to another registrar.
180
+ */
181
+ pushDomain(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
182
+ /**
183
+ * This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables auto renew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the administrative, registrant, and technical contacts. You must specify the same privacy setting for the administrative, registrant, and technical contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your Amazon Web Services account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
160
184
  */
161
185
  registerDomain(params: Route53Domains.Types.RegisterDomainRequest, callback?: (err: AWSError, data: Route53Domains.Types.RegisterDomainResponse) => void): Request<Route53Domains.Types.RegisterDomainResponse, AWSError>;
162
186
  /**
163
- * This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables autorenew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the administrative, registrant, and technical contacts. You must specify the same privacy setting for the administrative, registrant, and technical contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your Amazon Web Services account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
187
+ * This operation registers a domain. Domains are registered either by Amazon Registrar (for .com, .net, and .org domains) or by our registrar associate, Gandi (for all other domains). For some top-level domains (TLDs), this operation requires extra parameters. When you register a domain, Amazon Route 53 does the following: Creates a Route 53 hosted zone that has the same name as the domain. Route 53 assigns four name servers to your hosted zone and automatically updates your domain registration with the names of these name servers. Enables auto renew, so your domain registration will renew automatically each year. We'll notify you in advance of the renewal date so you can choose whether to renew the registration. Optionally enables privacy protection, so WHOIS queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If you don't enable privacy protection, WHOIS queries return the information that you entered for the administrative, registrant, and technical contacts. You must specify the same privacy setting for the administrative, registrant, and technical contacts. If registration is successful, returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant is notified by email. Charges your Amazon Web Services account an amount based on the top-level domain. For more information, see Amazon Route 53 Pricing.
164
188
  */
165
189
  registerDomain(callback?: (err: AWSError, data: Route53Domains.Types.RegisterDomainResponse) => void): Request<Route53Domains.Types.RegisterDomainResponse, AWSError>;
166
190
  /**
@@ -188,11 +212,19 @@ declare class Route53Domains extends Service {
188
212
  */
189
213
  resendContactReachabilityEmail(callback?: (err: AWSError, data: Route53Domains.Types.ResendContactReachabilityEmailResponse) => void): Request<Route53Domains.Types.ResendContactReachabilityEmailResponse, AWSError>;
190
214
  /**
191
- * This operation returns the AuthCode for the domain. To transfer a domain to another registrar, you provide this value to the new registrar.
215
+ * Resend the form of authorization email for this operation.
216
+ */
217
+ resendOperationAuthorization(params: Route53Domains.Types.ResendOperationAuthorizationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
218
+ /**
219
+ * Resend the form of authorization email for this operation.
220
+ */
221
+ resendOperationAuthorization(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
222
+ /**
223
+ * This operation returns the authorization code for the domain. To transfer a domain to another registrar, you provide this value to the new registrar.
192
224
  */
193
225
  retrieveDomainAuthCode(params: Route53Domains.Types.RetrieveDomainAuthCodeRequest, callback?: (err: AWSError, data: Route53Domains.Types.RetrieveDomainAuthCodeResponse) => void): Request<Route53Domains.Types.RetrieveDomainAuthCodeResponse, AWSError>;
194
226
  /**
195
- * This operation returns the AuthCode for the domain. To transfer a domain to another registrar, you provide this value to the new registrar.
227
+ * This operation returns the authorization code for the domain. To transfer a domain to another registrar, you provide this value to the new registrar.
196
228
  */
197
229
  retrieveDomainAuthCode(callback?: (err: AWSError, data: Route53Domains.Types.RetrieveDomainAuthCodeResponse) => void): Request<Route53Domains.Types.RetrieveDomainAuthCodeResponse, AWSError>;
198
230
  /**
@@ -212,11 +244,11 @@ declare class Route53Domains extends Service {
212
244
  */
213
245
  transferDomainToAnotherAwsAccount(callback?: (err: AWSError, data: Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse) => void): Request<Route53Domains.Types.TransferDomainToAnotherAwsAccountResponse, AWSError>;
214
246
  /**
215
- * This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
247
+ * This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the operation. If the request is not completed successfully, the domain registrant will be notified by email.
216
248
  */
217
249
  updateDomainContact(params: Route53Domains.Types.UpdateDomainContactRequest, callback?: (err: AWSError, data: Route53Domains.Types.UpdateDomainContactResponse) => void): Request<Route53Domains.Types.UpdateDomainContactResponse, AWSError>;
218
250
  /**
219
- * This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email.
251
+ * This operation updates the contact information for a particular domain. You must specify information for at least one contact: registrant, administrator, or technical. If the update is successful, this method returns an operation ID that you can use to track the progress and completion of the operation. If the request is not completed successfully, the domain registrant will be notified by email.
220
252
  */
221
253
  updateDomainContact(callback?: (err: AWSError, data: Route53Domains.Types.UpdateDomainContactResponse) => void): Request<Route53Domains.Types.UpdateDomainContactResponse, AWSError>;
222
254
  /**
@@ -271,6 +303,22 @@ declare namespace Route53Domains {
271
303
  }
272
304
  export type AccountId = string;
273
305
  export type AddressLine = string;
306
+ export interface AssociateDelegationSignerToDomainRequest {
307
+ /**
308
+ * The name of the domain.
309
+ */
310
+ DomainName: DomainName;
311
+ /**
312
+ * The information about a key, including the algorithm, public key-value, and flags.
313
+ */
314
+ SigningAttributes: DnssecSigningAttributes;
315
+ }
316
+ export interface AssociateDelegationSignerToDomainResponse {
317
+ /**
318
+ * The identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
319
+ */
320
+ OperationId?: OperationId;
321
+ }
274
322
  export interface BillingRecord {
275
323
  /**
276
324
  * The name of the domain that the billing record applies to. If the domain name contains characters other than a-z, 0-9, and - (hyphen), such as an internationalized domain name, then this value is in Punycode. For more information, see DNS Domain Name Format in the Amazon Route 53 Developer Guide.
@@ -321,7 +369,7 @@ declare namespace Route53Domains {
321
369
  /**
322
370
  * Whether the domain name is available for registering. You can register only domains designated as AVAILABLE. Valid values: AVAILABLE The domain name is available. AVAILABLE_RESERVED The domain name is reserved under specific conditions. AVAILABLE_PREORDER The domain name is available and can be preordered. DONT_KNOW The TLD registry didn't reply with a definitive answer about whether the domain name is available. Route 53 can return this response for a variety of reasons, for example, the registry is performing maintenance. Try again later. PENDING The TLD registry didn't return a response in the expected amount of time. When the response is delayed, it usually takes just a few extra seconds. You can resubmit the request immediately. RESERVED The domain name has been reserved for another person or organization. UNAVAILABLE The domain name is not available. UNAVAILABLE_PREMIUM The domain name is not available. UNAVAILABLE_RESTRICTED The domain name is forbidden.
323
371
  */
324
- Availability: DomainAvailability;
372
+ Availability?: DomainAvailability;
325
373
  }
326
374
  export interface CheckDomainTransferabilityRequest {
327
375
  /**
@@ -337,9 +385,19 @@ declare namespace Route53Domains {
337
385
  /**
338
386
  * A complex type that contains information about whether the specified domain can be transferred to Route 53.
339
387
  */
340
- Transferability: DomainTransferability;
388
+ Transferability?: DomainTransferability;
341
389
  }
342
390
  export type City = string;
391
+ export interface Consent {
392
+ /**
393
+ * Maximum amount the customer agreed to accept.
394
+ */
395
+ MaxPrice: Price;
396
+ /**
397
+ * Currency for the MaxPrice.
398
+ */
399
+ Currency: Currency;
400
+ }
343
401
  export interface ContactDetail {
344
402
  /**
345
403
  * First name of contact.
@@ -447,7 +505,69 @@ declare namespace Route53Domains {
447
505
  /**
448
506
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
449
507
  */
450
- OperationId: OperationId;
508
+ OperationId?: OperationId;
509
+ }
510
+ export interface DisassociateDelegationSignerFromDomainRequest {
511
+ /**
512
+ * Name of the domain.
513
+ */
514
+ DomainName: DomainName;
515
+ /**
516
+ * An internal identification number assigned to each DS record after it’s created. You can retrieve it as part of DNSSEC information returned by GetDomainDetail.
517
+ */
518
+ Id: String;
519
+ }
520
+ export interface DisassociateDelegationSignerFromDomainResponse {
521
+ /**
522
+ * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
523
+ */
524
+ OperationId?: OperationId;
525
+ }
526
+ export interface DnssecKey {
527
+ /**
528
+ * The number of the public key’s cryptographic algorithm according to an IANA assignment. If Route 53 is your DNS service, set this to 13. For more information about enabling DNSSEC signing, see Enabling DNSSEC signing and establishing a chain of trust.
529
+ */
530
+ Algorithm?: NullableInteger;
531
+ /**
532
+ * Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available. If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.
533
+ */
534
+ Flags?: NullableInteger;
535
+ /**
536
+ * The base64-encoded public key part of the key pair that is passed to the registry .
537
+ */
538
+ PublicKey?: DnssecPublicKey;
539
+ /**
540
+ * The number of the DS digest algorithm according to an IANA assignment. For more information, see IANA for DNSSEC Delegation Signer (DS) Resource Record (RR) Type Digest Algorithms.
541
+ */
542
+ DigestType?: NullableInteger;
543
+ /**
544
+ * The delegation signer digest. Digest is calculated from the public key provided using specified digest algorithm and this digest is the actual value returned from the registry nameservers as the value of DS records.
545
+ */
546
+ Digest?: String;
547
+ /**
548
+ * A numeric identification of the DNSKEY record referred to by this DS record.
549
+ */
550
+ KeyTag?: NullableInteger;
551
+ /**
552
+ * An ID assigned to each DS record created by AssociateDelegationSignerToDomain.
553
+ */
554
+ Id?: String;
555
+ }
556
+ export type DnssecKeyList = DnssecKey[];
557
+ export type DnssecPublicKey = string;
558
+ export interface DnssecSigningAttributes {
559
+ /**
560
+ * Algorithm which was used to generate the digest from the public key.
561
+ */
562
+ Algorithm?: NullableInteger;
563
+ /**
564
+ * Defines the type of key. It can be either a KSK (key-signing-key, value 257) or ZSK (zone-signing-key, value 256). Using KSK is always encouraged. Only use ZSK if your DNS provider isn't Route 53 and you don’t have KSK available. If you have KSK and ZSK keys, always use KSK to create a delegations signer (DS) record. If you have ZSK keys only – use ZSK to create a DS record.
565
+ */
566
+ Flags?: NullableInteger;
567
+ /**
568
+ * The base64-encoded public key part of the key pair that is passed to the registry.
569
+ */
570
+ PublicKey?: DnssecPublicKey;
451
571
  }
452
572
  export type DomainAuthCode = string;
453
573
  export type DomainAvailability = "AVAILABLE"|"AVAILABLE_RESERVED"|"AVAILABLE_PREORDER"|"UNAVAILABLE"|"UNAVAILABLE_PREMIUM"|"UNAVAILABLE_RESTRICTED"|"RESERVED"|"DONT_KNOW"|string;
@@ -497,7 +617,7 @@ declare namespace Route53Domains {
497
617
  /**
498
618
  * The name of the domain that the summary information applies to.
499
619
  */
500
- DomainName: DomainName;
620
+ DomainName?: DomainName;
501
621
  /**
502
622
  * Indicates whether the domain is automatically renewed upon expiration.
503
623
  */
@@ -535,12 +655,12 @@ declare namespace Route53Domains {
535
655
  /**
536
656
  * Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
537
657
  */
538
- OperationId: OperationId;
658
+ OperationId?: OperationId;
539
659
  }
540
660
  export type ErrorMessage = string;
541
661
  export interface ExtraParam {
542
662
  /**
543
- * The name of an additional parameter that is required by a top-level domain. Here are the top-level domains that require additional parameters and the names of the parameters that they require: .com.au and .net.au AU_ID_NUMBER AU_ID_TYPE Valid values include the following: ABN (Australian business number) ACN (Australian company number) TM (Trademark number) .ca BRAND_NUMBER CA_BUSINESS_ENTITY_TYPE Valid values include the following: BANK (Bank) COMMERCIAL_COMPANY (Commercial company) COMPANY (Company) COOPERATION (Cooperation) COOPERATIVE (Cooperative) COOPRIX (Cooprix) CORP (Corporation) CREDIT_UNION (Credit union) FOMIA (Federation of mutual insurance associations) INC (Incorporated) LTD (Limited) LTEE (Limitée) LLC (Limited liability corporation) LLP (Limited liability partnership) LTE (Lte.) MBA (Mutual benefit association) MIC (Mutual insurance company) NFP (Not-for-profit corporation) SA (S.A.) SAVINGS_COMPANY (Savings company) SAVINGS_UNION (Savings union) SARL (Société à responsabilité limitée) TRUST (Trust) ULC (Unlimited liability corporation) CA_LEGAL_TYPE When ContactType is PERSON, valid values include the following: ABO (Aboriginal Peoples indigenous to Canada) CCT (Canadian citizen) LGR (Legal Representative of a Canadian Citizen or Permanent Resident) RES (Permanent resident of Canada) When ContactType is a value other than PERSON, valid values include the following: ASS (Canadian unincorporated association) CCO (Canadian corporation) EDU (Canadian educational institution) GOV (Government or government entity in Canada) HOP (Canadian Hospital) INB (Indian Band recognized by the Indian Act of Canada) LAM (Canadian Library, Archive, or Museum) MAJ (Her/His Majesty the Queen/King) OMK (Official mark registered in Canada) PLT (Canadian Political Party) PRT (Partnership Registered in Canada) TDM (Trademark registered in Canada) TRD (Canadian Trade Union) TRS (Trust established in Canada) .es ES_IDENTIFICATION The value of ES_IDENTIFICATION depends on the following values: The value of ES_LEGAL_FORM The value of ES_IDENTIFICATION_TYPE If ES_LEGAL_FORM is any value other than INDIVIDUAL: Specify 1 letter + 8 numbers (CIF [Certificado de Identificación Fiscal]) Example: B12345678 If ES_LEGAL_FORM is INDIVIDUAL, the value that you specify for ES_IDENTIFICATION depends on the value of ES_IDENTIFICATION_TYPE: If ES_IDENTIFICATION_TYPE is DNI_AND_NIF (for Spanish contacts): Specify 8 numbers + 1 letter (DNI [Documento Nacional de Identidad], NIF [Número de Identificación Fiscal]) Example: 12345678M If ES_IDENTIFICATION_TYPE is NIE (for foreigners with legal residence): Specify 1 letter + 7 numbers + 1 letter ( NIE [Número de Identidad de Extranjero]) Example: Y1234567X If ES_IDENTIFICATION_TYPE is OTHER (for contacts outside of Spain): Specify a passport number, drivers license number, or national identity card number ES_IDENTIFICATION_TYPE Valid values include the following: DNI_AND_NIF (For Spanish contacts) NIE (For foreigners with legal residence) OTHER (For contacts outside of Spain) ES_LEGAL_FORM Valid values include the following: ASSOCIATION CENTRAL_GOVERNMENT_BODY CIVIL_SOCIETY COMMUNITY_OF_OWNERS COMMUNITY_PROPERTY CONSULATE COOPERATIVE DESIGNATION_OF_ORIGIN_SUPERVISORY_COUNCIL ECONOMIC_INTEREST_GROUP EMBASSY ENTITY_MANAGING_NATURAL_AREAS FARM_PARTNERSHIP FOUNDATION GENERAL_AND_LIMITED_PARTNERSHIP GENERAL_PARTNERSHIP INDIVIDUAL LIMITED_COMPANY LOCAL_AUTHORITY LOCAL_PUBLIC_ENTITY MUTUAL_INSURANCE_COMPANY NATIONAL_PUBLIC_ENTITY ORDER_OR_RELIGIOUS_INSTITUTION OTHERS (Only for contacts outside of Spain) POLITICAL_PARTY PROFESSIONAL_ASSOCIATION PUBLIC_LAW_ASSOCIATION PUBLIC_LIMITED_COMPANY REGIONAL_GOVERNMENT_BODY REGIONAL_PUBLIC_ENTITY SAVINGS_BANK SPANISH_OFFICE SPORTS_ASSOCIATION SPORTS_FEDERATION SPORTS_LIMITED_COMPANY TEMPORARY_ALLIANCE_OF_ENTERPRISES TRADE_UNION WORKER_OWNED_COMPANY WORKER_OWNED_LIMITED_COMPANY .eu EU_COUNTRY_OF_CITIZENSHIP .fi BIRTH_DATE_IN_YYYY_MM_DD FI_BUSINESS_NUMBER FI_ID_NUMBER FI_NATIONALITY Valid values include the following: FINNISH NOT_FINNISH FI_ORGANIZATION_TYPE Valid values include the following: COMPANY CORPORATION GOVERNMENT INSTITUTION POLITICAL_PARTY PUBLIC_COMMUNITY TOWNSHIP .fr BIRTH_CITY BIRTH_COUNTRY BIRTH_DATE_IN_YYYY_MM_DD BIRTH_DEPARTMENT: Specify the INSEE code that corresponds with the department where the contact was born. If the contact was born somewhere other than France or its overseas departments, specify 99. For more information, including a list of departments and the corresponding INSEE numbers, see the Wikipedia entry Departments of France. BRAND_NUMBER .it IT_NATIONALITY IT_PIN IT_REGISTRANT_ENTITY_TYPE Valid values include the following: FOREIGNERS FREELANCE_WORKERS (Freelance workers and professionals) ITALIAN_COMPANIES (Italian companies and one-person companies) NON_PROFIT_ORGANIZATIONS OTHER_SUBJECTS PUBLIC_ORGANIZATIONS .ru BIRTH_DATE_IN_YYYY_MM_DD RU_PASSPORT_DATA .se BIRTH_COUNTRY SE_ID_NUMBER .sg SG_ID_NUMBER .co.uk, .me.uk, and .org.uk UK_CONTACT_TYPE Valid values include the following: CRC (UK Corporation by Royal Charter) FCORP (Non-UK Corporation) FIND (Non-UK Individual, representing self) FOTHER (Non-UK Entity that does not fit into any other category) GOV (UK Government Body) IND (UK Individual (representing self)) IP (UK Industrial/Provident Registered Company) LLP (UK Limited Liability Partnership) LTD (UK Limited Company) OTHER (UK Entity that does not fit into any other category) PLC (UK Public Limited Company) PTNR (UK Partnership) RCHAR (UK Registered Charity) SCH (UK School) STAT (UK Statutory Body) STRA (UK Sole Trader) UK_COMPANY_NUMBER In addition, many TLDs require a VAT_NUMBER.
663
+ * The name of an additional parameter that is required by a top-level domain. Here are the top-level domains that require additional parameters and the names of the parameters that they require: .com.au and .net.au AU_ID_NUMBER AU_ID_TYPE Valid values include the following: ABN (Australian business number) ACN (Australian company number) TM (Trademark number) .ca BRAND_NUMBER CA_BUSINESS_ENTITY_TYPE Valid values include the following: BANK (Bank) COMMERCIAL_COMPANY (Commercial company) COMPANY (Company) COOPERATION (Cooperation) COOPERATIVE (Cooperative) COOPRIX (Cooprix) CORP (Corporation) CREDIT_UNION (Credit union) FOMIA (Federation of mutual insurance associations) INC (Incorporated) LTD (Limited) LTEE (Limitée) LLC (Limited liability corporation) LLP (Limited liability partnership) LTE (Lte.) MBA (Mutual benefit association) MIC (Mutual insurance company) NFP (Not-for-profit corporation) SA (S.A.) SAVINGS_COMPANY (Savings company) SAVINGS_UNION (Savings union) SARL (Société à responsabilité limitée) TRUST (Trust) ULC (Unlimited liability corporation) CA_LEGAL_TYPE When ContactType is PERSON, valid values include the following: ABO (Aboriginal Peoples indigenous to Canada) CCT (Canadian citizen) LGR (Legal Representative of a Canadian Citizen or Permanent Resident) RES (Permanent resident of Canada) When ContactType is a value other than PERSON, valid values include the following: ASS (Canadian unincorporated association) CCO (Canadian corporation) EDU (Canadian educational institution) GOV (Government or government entity in Canada) HOP (Canadian Hospital) INB (Indian Band recognized by the Indian Act of Canada) LAM (Canadian Library, Archive, or Museum) MAJ (Her/His Majesty the Queen/King) OMK (Official mark registered in Canada) PLT (Canadian Political Party) PRT (Partnership Registered in Canada) TDM (Trademark registered in Canada) TRD (Canadian Trade Union) TRS (Trust established in Canada) .es ES_IDENTIFICATION The value of ES_IDENTIFICATION depends on the following values: The value of ES_LEGAL_FORM The value of ES_IDENTIFICATION_TYPE If ES_LEGAL_FORM is any value other than INDIVIDUAL: Specify 1 letter + 8 numbers (CIF [Certificado de Identificación Fiscal]) Example: B12345678 If ES_LEGAL_FORM is INDIVIDUAL, the value that you specify for ES_IDENTIFICATION depends on the value of ES_IDENTIFICATION_TYPE: If ES_IDENTIFICATION_TYPE is DNI_AND_NIF (for Spanish contacts): Specify 8 numbers + 1 letter (DNI [Documento Nacional de Identidad], NIF [Número de Identificación Fiscal]) Example: 12345678M If ES_IDENTIFICATION_TYPE is NIE (for foreigners with legal residence): Specify 1 letter + 7 numbers + 1 letter ( NIE [Número de Identidad de Extranjero]) Example: Y1234567X If ES_IDENTIFICATION_TYPE is OTHER (for contacts outside of Spain): Specify a passport number, drivers license number, or national identity card number ES_IDENTIFICATION_TYPE Valid values include the following: DNI_AND_NIF (For Spanish contacts) NIE (For foreigners with legal residence) OTHER (For contacts outside of Spain) ES_LEGAL_FORM Valid values include the following: ASSOCIATION CENTRAL_GOVERNMENT_BODY CIVIL_SOCIETY COMMUNITY_OF_OWNERS COMMUNITY_PROPERTY CONSULATE COOPERATIVE DESIGNATION_OF_ORIGIN_SUPERVISORY_COUNCIL ECONOMIC_INTEREST_GROUP EMBASSY ENTITY_MANAGING_NATURAL_AREAS FARM_PARTNERSHIP FOUNDATION GENERAL_AND_LIMITED_PARTNERSHIP GENERAL_PARTNERSHIP INDIVIDUAL LIMITED_COMPANY LOCAL_AUTHORITY LOCAL_PUBLIC_ENTITY MUTUAL_INSURANCE_COMPANY NATIONAL_PUBLIC_ENTITY ORDER_OR_RELIGIOUS_INSTITUTION OTHERS (Only for contacts outside of Spain) POLITICAL_PARTY PROFESSIONAL_ASSOCIATION PUBLIC_LAW_ASSOCIATION PUBLIC_LIMITED_COMPANY REGIONAL_GOVERNMENT_BODY REGIONAL_PUBLIC_ENTITY SAVINGS_BANK SPANISH_OFFICE SPORTS_ASSOCIATION SPORTS_FEDERATION SPORTS_LIMITED_COMPANY TEMPORARY_ALLIANCE_OF_ENTERPRISES TRADE_UNION WORKER_OWNED_COMPANY WORKER_OWNED_LIMITED_COMPANY .eu EU_COUNTRY_OF_CITIZENSHIP .fi BIRTH_DATE_IN_YYYY_MM_DD FI_BUSINESS_NUMBER FI_ID_NUMBER FI_NATIONALITY Valid values include the following: FINNISH NOT_FINNISH FI_ORGANIZATION_TYPE Valid values include the following: COMPANY CORPORATION GOVERNMENT INSTITUTION POLITICAL_PARTY PUBLIC_COMMUNITY TOWNSHIP .fr BIRTH_CITY BIRTH_COUNTRY BIRTH_DATE_IN_YYYY_MM_DD BIRTH_DEPARTMENT: Specify the INSEE code that corresponds with the department where the contact was born. If the contact was born somewhere other than France or its overseas departments, specify 99. For more information, including a list of departments and the corresponding INSEE numbers, see the Wikipedia entry Departments of France. BRAND_NUMBER .it IT_NATIONALITY IT_PIN IT_REGISTRANT_ENTITY_TYPE Valid values include the following: FOREIGNERS FREELANCE_WORKERS (Freelance workers and professionals) ITALIAN_COMPANIES (Italian companies and one-person companies) NON_PROFIT_ORGANIZATIONS OTHER_SUBJECTS PUBLIC_ORGANIZATIONS .ru BIRTH_DATE_IN_YYYY_MM_DD RU_PASSPORT_DATA .se BIRTH_COUNTRY SE_ID_NUMBER .sg SG_ID_NUMBER .uk, .co.uk, .me.uk, and .org.uk UK_CONTACT_TYPE Valid values include the following: CRC (UK Corporation by Royal Charter) FCORP (Non-UK Corporation) FIND (Non-UK Individual, representing self) FOTHER (Non-UK Entity that does not fit into any other category) GOV (UK Government Body) IND (UK Individual (representing self)) IP (UK Industrial/Provident Registered Company) LLP (UK Limited Liability Partnership) LTD (UK Limited Company) OTHER (UK Entity that does not fit into any other category) PLC (UK Public Limited Company) PTNR (UK Partnership) RCHAR (UK Registered Charity) SCH (UK School) STAT (UK Statutory Body) STRA (UK Sole Trader) UK_COMPANY_NUMBER In addition, many TLDs require a VAT_NUMBER.
544
664
  */
545
665
  Name: ExtraParamName;
546
666
  /**
@@ -549,7 +669,7 @@ declare namespace Route53Domains {
549
669
  Value: ExtraParamValue;
550
670
  }
551
671
  export type ExtraParamList = ExtraParam[];
552
- export type ExtraParamName = "DUNS_NUMBER"|"BRAND_NUMBER"|"BIRTH_DEPARTMENT"|"BIRTH_DATE_IN_YYYY_MM_DD"|"BIRTH_COUNTRY"|"BIRTH_CITY"|"DOCUMENT_NUMBER"|"AU_ID_NUMBER"|"AU_ID_TYPE"|"CA_LEGAL_TYPE"|"CA_BUSINESS_ENTITY_TYPE"|"CA_LEGAL_REPRESENTATIVE"|"CA_LEGAL_REPRESENTATIVE_CAPACITY"|"ES_IDENTIFICATION"|"ES_IDENTIFICATION_TYPE"|"ES_LEGAL_FORM"|"FI_BUSINESS_NUMBER"|"FI_ID_NUMBER"|"FI_NATIONALITY"|"FI_ORGANIZATION_TYPE"|"IT_NATIONALITY"|"IT_PIN"|"IT_REGISTRANT_ENTITY_TYPE"|"RU_PASSPORT_DATA"|"SE_ID_NUMBER"|"SG_ID_NUMBER"|"VAT_NUMBER"|"UK_CONTACT_TYPE"|"UK_COMPANY_NUMBER"|"EU_COUNTRY_OF_CITIZENSHIP"|string;
672
+ export type ExtraParamName = "DUNS_NUMBER"|"BRAND_NUMBER"|"BIRTH_DEPARTMENT"|"BIRTH_DATE_IN_YYYY_MM_DD"|"BIRTH_COUNTRY"|"BIRTH_CITY"|"DOCUMENT_NUMBER"|"AU_ID_NUMBER"|"AU_ID_TYPE"|"CA_LEGAL_TYPE"|"CA_BUSINESS_ENTITY_TYPE"|"CA_LEGAL_REPRESENTATIVE"|"CA_LEGAL_REPRESENTATIVE_CAPACITY"|"ES_IDENTIFICATION"|"ES_IDENTIFICATION_TYPE"|"ES_LEGAL_FORM"|"FI_BUSINESS_NUMBER"|"FI_ID_NUMBER"|"FI_NATIONALITY"|"FI_ORGANIZATION_TYPE"|"IT_NATIONALITY"|"IT_PIN"|"IT_REGISTRANT_ENTITY_TYPE"|"RU_PASSPORT_DATA"|"SE_ID_NUMBER"|"SG_ID_NUMBER"|"VAT_NUMBER"|"UK_CONTACT_TYPE"|"UK_COMPANY_NUMBER"|"EU_COUNTRY_OF_CITIZENSHIP"|"AU_PRIORITY_TOKEN"|string;
553
673
  export type ExtraParamValue = string;
554
674
  export type FIAuthKey = string;
555
675
  export interface FilterCondition {
@@ -593,11 +713,11 @@ declare namespace Route53Domains {
593
713
  /**
594
714
  * The name of a domain.
595
715
  */
596
- DomainName: DomainName;
716
+ DomainName?: DomainName;
597
717
  /**
598
- * The name of the domain.
718
+ * The name servers of the domain.
599
719
  */
600
- Nameservers: NameserverList;
720
+ Nameservers?: NameserverList;
601
721
  /**
602
722
  * Specifies whether the domain registration is set to renew automatically.
603
723
  */
@@ -605,15 +725,15 @@ declare namespace Route53Domains {
605
725
  /**
606
726
  * Provides details about the domain administrative contact.
607
727
  */
608
- AdminContact: ContactDetail;
728
+ AdminContact?: ContactDetail;
609
729
  /**
610
730
  * Provides details about the domain registrant.
611
731
  */
612
- RegistrantContact: ContactDetail;
732
+ RegistrantContact?: ContactDetail;
613
733
  /**
614
734
  * Provides details about the domain technical contact.
615
735
  */
616
- TechContact: ContactDetail;
736
+ TechContact?: ContactDetail;
617
737
  /**
618
738
  * Specifies whether contact information is concealed from WHOIS queries. If the value is true, WHOIS ("who is") queries return contact information either for Amazon Registrar (for .com, .net, and .org domains) or for our registrar associate, Gandi (for all other TLDs). If the value is false, WHOIS queries return the information that you entered for the admin contact.
619
739
  */
@@ -674,6 +794,10 @@ declare namespace Route53Domains {
674
794
  * An array of domain name status codes, also known as Extensible Provisioning Protocol (EPP) status codes. ICANN, the organization that maintains a central database of domain names, has developed a set of domain name status codes that tell you the status of a variety of operations on a domain name, for example, registering a domain name, transferring a domain name to another registrar, renewing the registration for a domain name, and so on. All registrars use this same set of status codes. For a current list of domain name status codes and an explanation of what each code means, go to the ICANN website and search for epp status codes. (Search on the ICANN website; web searches sometimes return an old version of the document.)
675
795
  */
676
796
  StatusList?: DomainStatusList;
797
+ /**
798
+ * A complex type that contains information about the DNSSEC configuration.
799
+ */
800
+ DnssecKeys?: DnssecKeyList;
677
801
  }
678
802
  export interface GetDomainSuggestionsRequest {
679
803
  /**
@@ -726,12 +850,21 @@ declare namespace Route53Domains {
726
850
  * The date when the request was submitted.
727
851
  */
728
852
  SubmittedDate?: Timestamp;
853
+ /**
854
+ * The date when the operation was last updated.
855
+ */
856
+ LastUpdatedDate?: Timestamp;
857
+ /**
858
+ * Lists any outstanding operations that require customer action. Valid values are: PENDING_ACCEPTANCE: The operation is waiting for acceptance from the account that is receiving the domain. PENDING_CUSTOMER_ACTION: The operation is waiting for customer action, for example, returning an email. PENDING_AUTHORIZATION: The operation is waiting for the form of authorization. For more information, see ResendOperationAuthorization. PENDING_PAYMENT_VERIFICATION: The operation is waiting for the payment method to validate. PENDING_SUPPORT_CASE: The operation includes a support case and is waiting for its resolution.
859
+ */
860
+ StatusFlag?: StatusFlag;
729
861
  }
730
862
  export type GlueIp = string;
731
863
  export type GlueIpList = GlueIp[];
732
864
  export type HostName = string;
733
865
  export type Integer = number;
734
866
  export type InvoiceId = string;
867
+ export type Label = string;
735
868
  export type LangCode = string;
736
869
  export type ListDomainsAttributeName = "DomainName"|"Expiry"|string;
737
870
  export interface ListDomainsRequest {
@@ -756,7 +889,7 @@ declare namespace Route53Domains {
756
889
  /**
757
890
  * A list of domains.
758
891
  */
759
- Domains: DomainSummaryList;
892
+ Domains?: DomainSummaryList;
760
893
  /**
761
894
  * If there are more domains than you specified for MaxItems in the request, submit another request and include the value of NextPageMarker in the value of Marker.
762
895
  */
@@ -775,17 +908,34 @@ declare namespace Route53Domains {
775
908
  * Number of domains to be returned. Default: 20
776
909
  */
777
910
  MaxItems?: PageMaxItems;
911
+ /**
912
+ * The status of the operations.
913
+ */
914
+ Status?: OperationStatusList;
915
+ /**
916
+ * An arrays of the domains operation types.
917
+ */
918
+ Type?: OperationTypeList;
919
+ /**
920
+ * The sort type for returned values.
921
+ */
922
+ SortBy?: ListOperationsSortAttributeName;
923
+ /**
924
+ * The sort order ofr returned values, either ascending or descending.
925
+ */
926
+ SortOrder?: SortOrder;
778
927
  }
779
928
  export interface ListOperationsResponse {
780
929
  /**
781
930
  * Lists summaries of the operations.
782
931
  */
783
- Operations: OperationSummaryList;
932
+ Operations?: OperationSummaryList;
784
933
  /**
785
934
  * If there are more operations than you specified for MaxItems in the request, submit another request and include the value of NextPageMarker in the value of Marker.
786
935
  */
787
936
  NextPageMarker?: PageMarker;
788
937
  }
938
+ export type ListOperationsSortAttributeName = "SubmittedDate"|string;
789
939
  export interface ListPricesRequest {
790
940
  /**
791
941
  * The TLD for which you want to receive the pricing information. For example. .net. If a Tld value is not provided, a list of prices for all TLDs supported by Route 53 is returned.
@@ -804,7 +954,7 @@ declare namespace Route53Domains {
804
954
  /**
805
955
  * A complex type that includes all the pricing information. If you specify a TLD, this array contains only the pricing for that TLD.
806
956
  */
807
- Prices: DomainPriceList;
957
+ Prices?: DomainPriceList;
808
958
  /**
809
959
  * If there are more prices than you specified for MaxItems in the request, submit another request and include the value of NextPageMarker in the value of Marker. Used only for all TLDs. If you specify a TLD, don't specify a NextPageMarker.
810
960
  */
@@ -820,7 +970,7 @@ declare namespace Route53Domains {
820
970
  /**
821
971
  * A list of the tags that are associated with the specified domain.
822
972
  */
823
- TagList: TagList;
973
+ TagList?: TagList;
824
974
  }
825
975
  export interface Nameserver {
826
976
  /**
@@ -833,28 +983,47 @@ declare namespace Route53Domains {
833
983
  GlueIps?: GlueIpList;
834
984
  }
835
985
  export type NameserverList = Nameserver[];
986
+ export type NullableInteger = number;
836
987
  export type OperationId = string;
837
988
  export type OperationStatus = "SUBMITTED"|"IN_PROGRESS"|"ERROR"|"SUCCESSFUL"|"FAILED"|string;
989
+ export type OperationStatusList = OperationStatus[];
838
990
  export interface OperationSummary {
839
991
  /**
840
992
  * Identifier returned to track the requested action.
841
993
  */
842
- OperationId: OperationId;
994
+ OperationId?: OperationId;
843
995
  /**
844
996
  * The current status of the requested operation in the system.
845
997
  */
846
- Status: OperationStatus;
998
+ Status?: OperationStatus;
847
999
  /**
848
1000
  * Type of the action requested.
849
1001
  */
850
- Type: OperationType;
1002
+ Type?: OperationType;
851
1003
  /**
852
1004
  * The date when the request was submitted.
853
1005
  */
854
- SubmittedDate: Timestamp;
1006
+ SubmittedDate?: Timestamp;
1007
+ /**
1008
+ * Name of the domain.
1009
+ */
1010
+ DomainName?: DomainName;
1011
+ /**
1012
+ * Message about the operation.
1013
+ */
1014
+ Message?: ErrorMessage;
1015
+ /**
1016
+ * Automatically checks whether there are no outstanding operations on domains that need customer attention. Valid values are: PENDING_ACCEPTANCE: The operation is waiting for acceptance from the account that is receiving the domain. PENDING_CUSTOMER_ACTION: The operation is waiting for customer action, for example, returning an email. PENDING_AUTHORIZATION: The operation is waiting for the form of authorization. For more information, see ResendOperationAuthorization. PENDING_PAYMENT_VERIFICATION: The operation is waiting for the payment method to validate. PENDING_SUPPORT_CASE: The operation includes a support case and is waiting for its resolution.
1017
+ */
1018
+ StatusFlag?: StatusFlag;
1019
+ /**
1020
+ * The date when the last change was made in Unix time format and Coordinated Universal Time (UTC).
1021
+ */
1022
+ LastUpdatedDate?: Timestamp;
855
1023
  }
856
1024
  export type OperationSummaryList = OperationSummary[];
857
1025
  export type OperationType = "REGISTER_DOMAIN"|"DELETE_DOMAIN"|"TRANSFER_IN_DOMAIN"|"UPDATE_DOMAIN_CONTACT"|"UPDATE_NAMESERVER"|"CHANGE_PRIVACY_PROTECTION"|"DOMAIN_LOCK"|"ENABLE_AUTORENEW"|"DISABLE_AUTORENEW"|"ADD_DNSSEC"|"REMOVE_DNSSEC"|"EXPIRE_DOMAIN"|"TRANSFER_OUT_DOMAIN"|"CHANGE_DOMAIN_OWNER"|"RENEW_DOMAIN"|"PUSH_DOMAIN"|"INTERNAL_TRANSFER_OUT_DOMAIN"|"INTERNAL_TRANSFER_IN_DOMAIN"|string;
1026
+ export type OperationTypeList = OperationType[];
858
1027
  export type Operator = "LE"|"GE"|"BEGINS_WITH"|string;
859
1028
  export type PageMarker = string;
860
1029
  export type PageMaxItems = number;
@@ -869,6 +1038,16 @@ declare namespace Route53Domains {
869
1038
  */
870
1039
  Currency: Currency;
871
1040
  }
1041
+ export interface PushDomainRequest {
1042
+ /**
1043
+ * Name of the domain.
1044
+ */
1045
+ DomainName: DomainName;
1046
+ /**
1047
+ * New IPS tag for the domain.
1048
+ */
1049
+ Target: Label;
1050
+ }
872
1051
  export type ReachabilityStatus = "PENDING"|"DONE"|"EXPIRED"|string;
873
1052
  export interface RegisterDomainRequest {
874
1053
  /**
@@ -884,7 +1063,7 @@ declare namespace Route53Domains {
884
1063
  */
885
1064
  DurationInYears: DurationInYears;
886
1065
  /**
887
- * Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged. Default: true
1066
+ * Indicates whether the domain will be automatically renewed (true) or not (false). Auto renewal only takes effect after the account is charged. Default: true
888
1067
  */
889
1068
  AutoRenew?: Boolean;
890
1069
  /**
@@ -916,7 +1095,7 @@ declare namespace Route53Domains {
916
1095
  /**
917
1096
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
918
1097
  */
919
- OperationId: OperationId;
1098
+ OperationId?: OperationId;
920
1099
  }
921
1100
  export type RegistrarName = string;
922
1101
  export type RegistrarUrl = string;
@@ -952,7 +1131,7 @@ declare namespace Route53Domains {
952
1131
  /**
953
1132
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
954
1133
  */
955
- OperationId: OperationId;
1134
+ OperationId?: OperationId;
956
1135
  }
957
1136
  export type Reseller = string;
958
1137
  export interface ResendContactReachabilityEmailRequest {
@@ -975,6 +1154,12 @@ declare namespace Route53Domains {
975
1154
  */
976
1155
  isAlreadyVerified?: Boolean;
977
1156
  }
1157
+ export interface ResendOperationAuthorizationRequest {
1158
+ /**
1159
+ * Operation ID.
1160
+ */
1161
+ OperationId: OperationId;
1162
+ }
978
1163
  export interface RetrieveDomainAuthCodeRequest {
979
1164
  /**
980
1165
  * The name of the domain that you want to get an authorization code for.
@@ -985,7 +1170,7 @@ declare namespace Route53Domains {
985
1170
  /**
986
1171
  * The authorization code for the domain.
987
1172
  */
988
- AuthCode: DomainAuthCode;
1173
+ AuthCode?: DomainAuthCode;
989
1174
  }
990
1175
  export interface SortCondition {
991
1176
  /**
@@ -999,6 +1184,7 @@ declare namespace Route53Domains {
999
1184
  }
1000
1185
  export type SortOrder = "ASC"|"DESC"|string;
1001
1186
  export type State = string;
1187
+ export type StatusFlag = "PENDING_ACCEPTANCE"|"PENDING_CUSTOMER_ACTION"|"PENDING_AUTHORIZATION"|"PENDING_PAYMENT_VERIFICATION"|"PENDING_SUPPORT_CASE"|string;
1002
1188
  export type String = string;
1003
1189
  export interface Tag {
1004
1190
  /**
@@ -1038,7 +1224,7 @@ declare namespace Route53Domains {
1038
1224
  */
1039
1225
  AuthCode?: DomainAuthCode;
1040
1226
  /**
1041
- * Indicates whether the domain will be automatically renewed (true) or not (false). Autorenewal only takes effect after the account is charged. Default: true
1227
+ * Indicates whether the domain will be automatically renewed (true) or not (false). Auto renewal only takes effect after the account is charged. Default: true
1042
1228
  */
1043
1229
  AutoRenew?: Boolean;
1044
1230
  /**
@@ -1070,7 +1256,7 @@ declare namespace Route53Domains {
1070
1256
  /**
1071
1257
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
1072
1258
  */
1073
- OperationId: OperationId;
1259
+ OperationId?: OperationId;
1074
1260
  }
1075
1261
  export interface TransferDomainToAnotherAwsAccountRequest {
1076
1262
  /**
@@ -1092,7 +1278,7 @@ declare namespace Route53Domains {
1092
1278
  */
1093
1279
  Password?: String;
1094
1280
  }
1095
- export type Transferable = "TRANSFERABLE"|"UNTRANSFERABLE"|"DONT_KNOW"|string;
1281
+ export type Transferable = "TRANSFERABLE"|"UNTRANSFERABLE"|"DONT_KNOW"|"DOMAIN_IN_OWN_ACCOUNT"|"DOMAIN_IN_ANOTHER_ACCOUNT"|"PREMIUM_DOMAIN"|string;
1096
1282
  export interface UpdateDomainContactPrivacyRequest {
1097
1283
  /**
1098
1284
  * The name of the domain that you want to update the privacy setting for.
@@ -1115,7 +1301,7 @@ declare namespace Route53Domains {
1115
1301
  /**
1116
1302
  * Identifier for tracking the progress of the request. To use this ID to query the operation status, use GetOperationDetail.
1117
1303
  */
1118
- OperationId: OperationId;
1304
+ OperationId?: OperationId;
1119
1305
  }
1120
1306
  export interface UpdateDomainContactRequest {
1121
1307
  /**
@@ -1134,12 +1320,16 @@ declare namespace Route53Domains {
1134
1320
  * Provides detailed contact information.
1135
1321
  */
1136
1322
  TechContact?: ContactDetail;
1323
+ /**
1324
+ * Customer's consent for the owner change request.
1325
+ */
1326
+ Consent?: Consent;
1137
1327
  }
1138
1328
  export interface UpdateDomainContactResponse {
1139
1329
  /**
1140
1330
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
1141
1331
  */
1142
- OperationId: OperationId;
1332
+ OperationId?: OperationId;
1143
1333
  }
1144
1334
  export interface UpdateDomainNameserversRequest {
1145
1335
  /**
@@ -1159,7 +1349,7 @@ declare namespace Route53Domains {
1159
1349
  /**
1160
1350
  * Identifier for tracking the progress of the request. To query the operation status, use GetOperationDetail.
1161
1351
  */
1162
- OperationId: OperationId;
1352
+ OperationId?: OperationId;
1163
1353
  }
1164
1354
  export interface UpdateTagsForDomainRequest {
1165
1355
  /**