aws-sdk 2.1237.0 → 2.1239.0

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.
@@ -156,6 +156,12 @@
156
156
  "limit_key": "MaxResults",
157
157
  "result_key": "Images"
158
158
  },
159
+ "ListInferenceRecommendationsJobSteps": {
160
+ "input_token": "NextToken",
161
+ "output_token": "NextToken",
162
+ "limit_key": "MaxResults",
163
+ "result_key": "Steps"
164
+ },
159
165
  "ListInferenceRecommendationsJobs": {
160
166
  "input_token": "NextToken",
161
167
  "output_token": "NextToken",
@@ -382,6 +382,10 @@ declare namespace ACMPCA {
382
382
  * Defines a cryptographic key management compliance standard used for handling CA keys. Default: FIPS_140_2_LEVEL_3_OR_HIGHER Note: Amazon Web Services Region ap-northeast-3 supports only FIPS_140_2_LEVEL_2_OR_HIGHER. You must explicitly specify this parameter and value when creating a CA in that Region. Specifying a different value (or no value) results in an InvalidArgsException with the message "A certificate authority cannot be created in this region with the specified security standard."
383
383
  */
384
384
  KeyStorageSecurityStandard?: KeyStorageSecurityStandard;
385
+ /**
386
+ * Specifies whether the CA issues general-purpose certificates that typically require a revocation mechanism, or short-lived certificates that may optionally omit revocation because they expire quickly. Short-lived certificate validity is limited to seven days. The default value is GENERAL_PURPOSE.
387
+ */
388
+ UsageMode?: CertificateAuthorityUsageMode;
385
389
  }
386
390
  export interface CertificateAuthorityConfiguration {
387
391
  /**
@@ -403,6 +407,7 @@ declare namespace ACMPCA {
403
407
  }
404
408
  export type CertificateAuthorityStatus = "CREATING"|"PENDING_CERTIFICATE"|"ACTIVE"|"DELETED"|"DISABLED"|"EXPIRED"|"FAILED"|string;
405
409
  export type CertificateAuthorityType = "ROOT"|"SUBORDINATE"|string;
410
+ export type CertificateAuthorityUsageMode = "GENERAL_PURPOSE"|"SHORT_LIVED_CERTIFICATE"|string;
406
411
  export type CertificateBody = string;
407
412
  export type CertificateBodyBlob = Buffer|Uint8Array|Blob|string;
408
413
  export type CertificateChain = string;
@@ -458,6 +463,10 @@ declare namespace ACMPCA {
458
463
  * Key-value pairs that will be attached to the new private CA. You can associate up to 50 tags with a private CA. For information using tags with IAM to manage permissions, see Controlling Access Using IAM Tags.
459
464
  */
460
465
  Tags?: TagList;
466
+ /**
467
+ * Specifies whether the CA issues general-purpose certificates that typically require a revocation mechanism, or short-lived certificates that may optionally omit revocation because they expire quickly. Short-lived certificate validity is limited to seven days. The default value is GENERAL_PURPOSE.
468
+ */
469
+ UsageMode?: CertificateAuthorityUsageMode;
461
470
  }
462
471
  export interface CreateCertificateAuthorityResponse {
463
472
  /**
@@ -924,7 +933,7 @@ declare namespace ACMPCA {
924
933
  */
925
934
  Enabled: Boolean;
926
935
  /**
927
- * By default, ACM Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain. Note: The value of the CNAME must not include a protocol prefix such as "http://" or "https://". For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Certificate Manager Private Certificate Authority (PCA) User Guide.
936
+ * By default, ACM Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain. Note: The value of the CNAME must not include a protocol prefix such as "http://" or "https://". For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Private Certificate Authority (PCA) User Guide.
928
937
  */
929
938
  OcspCustomCname?: String253;
930
939
  }