@aws-sdk/client-transfer 3.554.0 → 3.555.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.
package/dist-cjs/index.js CHANGED
@@ -389,7 +389,8 @@ var CertificateType = {
389
389
  };
390
390
  var CertificateUsageType = {
391
391
  ENCRYPTION: "ENCRYPTION",
392
- SIGNING: "SIGNING"
392
+ SIGNING: "SIGNING",
393
+ TLS: "TLS"
393
394
  };
394
395
  var _ConflictException = class _ConflictException extends TransferServiceException {
395
396
  /**
@@ -62,6 +62,7 @@ export const CertificateType = {
62
62
  export const CertificateUsageType = {
63
63
  ENCRYPTION: "ENCRYPTION",
64
64
  SIGNING: "SIGNING",
65
+ TLS: "TLS",
65
66
  };
66
67
  export class ConflictException extends __BaseException {
67
68
  constructor(opts) {
@@ -42,7 +42,7 @@ declare const DescribeCertificateCommand_base: {
42
42
  * // Certificate: { // DescribedCertificate
43
43
  * // Arn: "STRING_VALUE", // required
44
44
  * // CertificateId: "STRING_VALUE",
45
- * // Usage: "SIGNING" || "ENCRYPTION",
45
+ * // Usage: "SIGNING" || "ENCRYPTION" || "TLS",
46
46
  * // Status: "ACTIVE" || "PENDING_ROTATION" || "INACTIVE",
47
47
  * // Certificate: "STRING_VALUE",
48
48
  * // CertificateChain: "STRING_VALUE",
@@ -36,7 +36,7 @@ declare const ImportCertificateCommand_base: {
36
36
  * // const { TransferClient, ImportCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
37
37
  * const client = new TransferClient(config);
38
38
  * const input = { // ImportCertificateRequest
39
- * Usage: "SIGNING" || "ENCRYPTION", // required
39
+ * Usage: "SIGNING" || "ENCRYPTION" || "TLS", // required
40
40
  * Certificate: "STRING_VALUE", // required
41
41
  * CertificateChain: "STRING_VALUE",
42
42
  * PrivateKey: "STRING_VALUE",
@@ -49,7 +49,7 @@ declare const ListCertificatesCommand_base: {
49
49
  * // { // ListedCertificate
50
50
  * // Arn: "STRING_VALUE",
51
51
  * // CertificateId: "STRING_VALUE",
52
- * // Usage: "SIGNING" || "ENCRYPTION",
52
+ * // Usage: "SIGNING" || "ENCRYPTION" || "TLS",
53
53
  * // Status: "ACTIVE" || "PENDING_ROTATION" || "INACTIVE",
54
54
  * // ActiveDate: new Date("TIMESTAMP"),
55
55
  * // InactiveDate: new Date("TIMESTAMP"),
@@ -238,6 +238,7 @@ export type CertificateType = (typeof CertificateType)[keyof typeof CertificateT
238
238
  export declare const CertificateUsageType: {
239
239
  readonly ENCRYPTION: "ENCRYPTION";
240
240
  readonly SIGNING: "SIGNING";
241
+ readonly TLS: "TLS";
241
242
  };
242
243
  /**
243
244
  * @public
@@ -2628,7 +2629,21 @@ export interface DescribedCertificate {
2628
2629
  */
2629
2630
  CertificateId?: string;
2630
2631
  /**
2631
- * <p>Specifies whether this certificate is used for signing or encryption.</p>
2632
+ * <p>Specifies how this certificate is used. It can be used in the following ways:</p>
2633
+ * <ul>
2634
+ * <li>
2635
+ * <p>
2636
+ * <code>SIGNING</code>: For signing AS2 messages</p>
2637
+ * </li>
2638
+ * <li>
2639
+ * <p>
2640
+ * <code>ENCRYPTION</code>: For encrypting AS2 messages</p>
2641
+ * </li>
2642
+ * <li>
2643
+ * <p>
2644
+ * <code>TLS</code>: For securing AS2 communications sent over HTTPS</p>
2645
+ * </li>
2646
+ * </ul>
2632
2647
  * @public
2633
2648
  */
2634
2649
  Usage?: CertificateUsageType;
@@ -3914,7 +3929,21 @@ export interface DescribeWorkflowResponse {
3914
3929
  */
3915
3930
  export interface ImportCertificateRequest {
3916
3931
  /**
3917
- * <p>Specifies whether this certificate is used for signing or encryption.</p>
3932
+ * <p>Specifies how this certificate is used. It can be used in the following ways:</p>
3933
+ * <ul>
3934
+ * <li>
3935
+ * <p>
3936
+ * <code>SIGNING</code>: For signing AS2 messages</p>
3937
+ * </li>
3938
+ * <li>
3939
+ * <p>
3940
+ * <code>ENCRYPTION</code>: For encrypting AS2 messages</p>
3941
+ * </li>
3942
+ * <li>
3943
+ * <p>
3944
+ * <code>TLS</code>: For securing AS2 communications sent over HTTPS</p>
3945
+ * </li>
3946
+ * </ul>
3918
3947
  * @public
3919
3948
  */
3920
3949
  Usage: CertificateUsageType | undefined;
@@ -4295,7 +4324,21 @@ export interface ListedCertificate {
4295
4324
  */
4296
4325
  CertificateId?: string;
4297
4326
  /**
4298
- * <p>Specifies whether this certificate is used for signing or encryption.</p>
4327
+ * <p>Specifies how this certificate is used. It can be used in the following ways:</p>
4328
+ * <ul>
4329
+ * <li>
4330
+ * <p>
4331
+ * <code>SIGNING</code>: For signing AS2 messages</p>
4332
+ * </li>
4333
+ * <li>
4334
+ * <p>
4335
+ * <code>ENCRYPTION</code>: For encrypting AS2 messages</p>
4336
+ * </li>
4337
+ * <li>
4338
+ * <p>
4339
+ * <code>TLS</code>: For securing AS2 communications sent over HTTPS</p>
4340
+ * </li>
4341
+ * </ul>
4299
4342
  * @public
4300
4343
  */
4301
4344
  Usage?: CertificateUsageType;
@@ -81,6 +81,7 @@ export type CertificateType =
81
81
  export declare const CertificateUsageType: {
82
82
  readonly ENCRYPTION: "ENCRYPTION";
83
83
  readonly SIGNING: "SIGNING";
84
+ readonly TLS: "TLS";
84
85
  };
85
86
  export type CertificateUsageType =
86
87
  (typeof CertificateUsageType)[keyof typeof CertificateUsageType];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.554.0",
4
+ "version": "3.555.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-transfer",