@aws-sdk/client-transfer 3.428.0 → 3.430.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.
@@ -119,7 +119,7 @@ export interface As2ConnectorConfig {
119
119
  * @public
120
120
  * <p>Specifies whether the AS2 file is compressed.</p>
121
121
  */
122
- Compression?: CompressionEnum | string;
122
+ Compression?: CompressionEnum;
123
123
  /**
124
124
  * @public
125
125
  * <p>The algorithm that is used to encrypt the file.</p>
@@ -128,12 +128,12 @@ export interface As2ConnectorConfig {
128
128
  * no traffic is sent in clear text.</p>
129
129
  * </note>
130
130
  */
131
- EncryptionAlgorithm?: EncryptionAlg | string;
131
+ EncryptionAlgorithm?: EncryptionAlg;
132
132
  /**
133
133
  * @public
134
134
  * <p>The algorithm that is used to sign the AS2 messages sent with the connector.</p>
135
135
  */
136
- SigningAlgorithm?: SigningAlg | string;
136
+ SigningAlgorithm?: SigningAlg;
137
137
  /**
138
138
  * @public
139
139
  * <p>The signing algorithm for the MDN response.</p>
@@ -141,7 +141,7 @@ export interface As2ConnectorConfig {
141
141
  * <p>If set to DEFAULT (or not set at all), the value for <code>SigningAlgorithm</code> is used.</p>
142
142
  * </note>
143
143
  */
144
- MdnSigningAlgorithm?: MdnSigningAlg | string;
144
+ MdnSigningAlgorithm?: MdnSigningAlg;
145
145
  /**
146
146
  * @public
147
147
  * <p>Used for outbound requests (from an Transfer Family server to a partner AS2 server) to determine whether
@@ -157,7 +157,7 @@ export interface As2ConnectorConfig {
157
157
  * </li>
158
158
  * </ul>
159
159
  */
160
- MdnResponse?: MdnResponse | string;
160
+ MdnResponse?: MdnResponse;
161
161
  /**
162
162
  * @public
163
163
  * <p>Provides Basic authentication support to the AS2 Connectors API. To use Basic authentication,
@@ -372,7 +372,7 @@ export interface CopyStepDetails {
372
372
  * </li>
373
373
  * </ul>
374
374
  */
375
- OverwriteExisting?: OverwriteExisting | string;
375
+ OverwriteExisting?: OverwriteExisting;
376
376
  /**
377
377
  * @public
378
378
  * <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
@@ -457,7 +457,7 @@ export interface CreateAccessRequest {
457
457
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
458
458
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
459
459
  * <note>
460
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
460
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
461
461
  * </note>
462
462
  */
463
463
  HomeDirectory?: string;
@@ -476,7 +476,7 @@ export interface CreateAccessRequest {
476
476
  * template.</p>
477
477
  * </note>
478
478
  */
479
- HomeDirectoryType?: HomeDirectoryType | string;
479
+ HomeDirectoryType?: HomeDirectoryType;
480
480
  /**
481
481
  * @public
482
482
  * <p>Logical directory mappings that specify what Amazon S3 or Amazon EFS paths and keys should
@@ -729,7 +729,7 @@ export interface CreateAgreementRequest {
729
729
  * <p>The status of the agreement. The agreement can be either <code>ACTIVE</code> or
730
730
  * <code>INACTIVE</code>.</p>
731
731
  */
732
- Status?: AgreementStatusType | string;
732
+ Status?: AgreementStatusType;
733
733
  /**
734
734
  * @public
735
735
  * <p>Key-value pairs that can be used to group and search for agreements.</p>
@@ -903,7 +903,7 @@ export interface CreateProfileRequest {
903
903
  * </li>
904
904
  * </ul>
905
905
  */
906
- ProfileType: ProfileType | string | undefined;
906
+ ProfileType: ProfileType | undefined;
907
907
  /**
908
908
  * @public
909
909
  * <p>An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.</p>
@@ -1090,7 +1090,7 @@ export interface IdentityProviderDetails {
1090
1090
  * </li>
1091
1091
  * </ul>
1092
1092
  */
1093
- SftpAuthenticationMethods?: SftpAuthenticationMethods | string;
1093
+ SftpAuthenticationMethods?: SftpAuthenticationMethods;
1094
1094
  }
1095
1095
  /**
1096
1096
  * @public
@@ -1196,7 +1196,7 @@ export interface ProtocolDetails {
1196
1196
  * </li>
1197
1197
  * </ul>
1198
1198
  */
1199
- TlsSessionResumptionMode?: TlsSessionResumptionMode | string;
1199
+ TlsSessionResumptionMode?: TlsSessionResumptionMode;
1200
1200
  /**
1201
1201
  * @public
1202
1202
  * <p>Use the <code>SetStatOption</code> to ignore the error that is generated when the client attempts to use <code>SETSTAT</code> on a file you are uploading to an S3 bucket.</p>
@@ -1210,12 +1210,12 @@ export interface ProtocolDetails {
1210
1210
  * <p>If you want to preserve the original timestamp for your file, and modify other file attributes using <code>SETSTAT</code>, you can use Amazon EFS as backend storage with Transfer Family.</p>
1211
1211
  * </note>
1212
1212
  */
1213
- SetStatOption?: SetStatOption | string;
1213
+ SetStatOption?: SetStatOption;
1214
1214
  /**
1215
1215
  * @public
1216
1216
  * <p>Indicates the transport method for the AS2 messages. Currently, only HTTP is supported.</p>
1217
1217
  */
1218
- As2Transports?: (As2Transport | string)[];
1218
+ As2Transports?: As2Transport[];
1219
1219
  }
1220
1220
  /**
1221
1221
  * @public
@@ -1323,7 +1323,7 @@ export interface CreateServerRequest {
1323
1323
  * <p>After the server is created, the domain cannot be changed.</p>
1324
1324
  * </note>
1325
1325
  */
1326
- Domain?: Domain | string;
1326
+ Domain?: Domain;
1327
1327
  /**
1328
1328
  * @public
1329
1329
  * <p>The virtual private cloud (VPC) endpoint settings that are configured for your server.
@@ -1354,7 +1354,7 @@ export interface CreateServerRequest {
1354
1354
  * <code>EndpointType</code> set to <code>VPC_ENDPOINT</code>.</p>
1355
1355
  * </note>
1356
1356
  */
1357
- EndpointType?: EndpointType | string;
1357
+ EndpointType?: EndpointType;
1358
1358
  /**
1359
1359
  * @public
1360
1360
  * <p>The RSA, ECDSA, or ED25519 private key to use for your SFTP-enabled server. You can add multiple host keys, in case you want
@@ -1404,7 +1404,7 @@ export interface CreateServerRequest {
1404
1404
  * If you choose this value, you must specify the ARN for the Lambda function in the <code>Function</code> parameter
1405
1405
  * for the <code>IdentityProviderDetails</code> data type.</p>
1406
1406
  */
1407
- IdentityProviderType?: IdentityProviderType | string;
1407
+ IdentityProviderType?: IdentityProviderType;
1408
1408
  /**
1409
1409
  * @public
1410
1410
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a server to turn
@@ -1483,7 +1483,7 @@ export interface CreateServerRequest {
1483
1483
  * </ul>
1484
1484
  * </note>
1485
1485
  */
1486
- Protocols?: (Protocol | string)[];
1486
+ Protocols?: Protocol[];
1487
1487
  /**
1488
1488
  * @public
1489
1489
  * <p>The protocol settings that are configured for your server.</p>
@@ -1567,7 +1567,7 @@ export interface CreateUserRequest {
1567
1567
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
1568
1568
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
1569
1569
  * <note>
1570
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
1570
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
1571
1571
  * </note>
1572
1572
  */
1573
1573
  HomeDirectory?: string;
@@ -1586,7 +1586,7 @@ export interface CreateUserRequest {
1586
1586
  * template.</p>
1587
1587
  * </note>
1588
1588
  */
1589
- HomeDirectoryType?: HomeDirectoryType | string;
1589
+ HomeDirectoryType?: HomeDirectoryType;
1590
1590
  /**
1591
1591
  * @public
1592
1592
  * <p>Logical directory mappings that specify what Amazon S3 or Amazon EFS paths and keys should
@@ -1767,7 +1767,7 @@ export interface DecryptStepDetails {
1767
1767
  * @public
1768
1768
  * <p>The type of encryption used. Currently, this value must be <code>PGP</code>.</p>
1769
1769
  */
1770
- Type: EncryptionType | string | undefined;
1770
+ Type: EncryptionType | undefined;
1771
1771
  /**
1772
1772
  * @public
1773
1773
  * <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
@@ -1798,7 +1798,7 @@ export interface DecryptStepDetails {
1798
1798
  * </li>
1799
1799
  * </ul>
1800
1800
  */
1801
- OverwriteExisting?: OverwriteExisting | string;
1801
+ OverwriteExisting?: OverwriteExisting;
1802
1802
  /**
1803
1803
  * @public
1804
1804
  * <p>Specifies the location for the file being decrypted. Use <code>$\{Transfer:UserName\}</code> or
@@ -1957,7 +1957,7 @@ export interface WorkflowStep {
1957
1957
  * </li>
1958
1958
  * </ul>
1959
1959
  */
1960
- Type?: WorkflowStepType | string;
1960
+ Type?: WorkflowStepType;
1961
1961
  /**
1962
1962
  * @public
1963
1963
  * <p>Details for a step that performs a file copy.</p>
@@ -2291,7 +2291,7 @@ export interface DescribedAccess {
2291
2291
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
2292
2292
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
2293
2293
  * <note>
2294
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
2294
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
2295
2295
  * </note>
2296
2296
  */
2297
2297
  HomeDirectory?: string;
@@ -2326,7 +2326,7 @@ export interface DescribedAccess {
2326
2326
  * template.</p>
2327
2327
  * </note>
2328
2328
  */
2329
- HomeDirectoryType?: HomeDirectoryType | string;
2329
+ HomeDirectoryType?: HomeDirectoryType;
2330
2330
  /**
2331
2331
  * @public
2332
2332
  * <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
@@ -2421,7 +2421,7 @@ export interface DescribedAgreement {
2421
2421
  * <p>The current status of the agreement, either <code>ACTIVE</code> or
2422
2422
  * <code>INACTIVE</code>.</p>
2423
2423
  */
2424
- Status?: AgreementStatusType | string;
2424
+ Status?: AgreementStatusType;
2425
2425
  /**
2426
2426
  * @public
2427
2427
  * <p>A system-assigned unique identifier for a server instance. This identifier indicates the
@@ -2521,14 +2521,14 @@ export interface DescribedCertificate {
2521
2521
  * @public
2522
2522
  * <p>Specifies whether this certificate is used for signing or encryption.</p>
2523
2523
  */
2524
- Usage?: CertificateUsageType | string;
2524
+ Usage?: CertificateUsageType;
2525
2525
  /**
2526
2526
  * @public
2527
2527
  * <p>The certificate can be either <code>ACTIVE</code>, <code>PENDING_ROTATION</code>, or
2528
2528
  * <code>INACTIVE</code>. <code>PENDING_ROTATION</code> means that this certificate will
2529
2529
  * replace the current certificate when it expires.</p>
2530
2530
  */
2531
- Status?: CertificateStatusType | string;
2531
+ Status?: CertificateStatusType;
2532
2532
  /**
2533
2533
  * @public
2534
2534
  * <p>The file name for the certificate.</p>
@@ -2569,7 +2569,7 @@ export interface DescribedCertificate {
2569
2569
  * @public
2570
2570
  * <p>If a private key has been specified for the certificate, its type is <code>CERTIFICATE_WITH_PRIVATE_KEY</code>. If there is no private key, the type is <code>CERTIFICATE</code>.</p>
2571
2571
  */
2572
- Type?: CertificateType | string;
2572
+ Type?: CertificateType;
2573
2573
  /**
2574
2574
  * @public
2575
2575
  * <p>The name or description that's used to identity the certificate. </p>
@@ -2816,7 +2816,7 @@ export interface ExecutionError {
2816
2816
  * </li>
2817
2817
  * </ul>
2818
2818
  */
2819
- Type: ExecutionErrorType | string | undefined;
2819
+ Type: ExecutionErrorType | undefined;
2820
2820
  /**
2821
2821
  * @public
2822
2822
  * <p>Specifies the descriptive message that corresponds to the <code>ErrorType</code>.</p>
@@ -2864,7 +2864,7 @@ export interface ExecutionStepResult {
2864
2864
  * </li>
2865
2865
  * </ul>
2866
2866
  */
2867
- StepType?: WorkflowStepType | string;
2867
+ StepType?: WorkflowStepType;
2868
2868
  /**
2869
2869
  * @public
2870
2870
  * <p>The values for the key/value pair applied as a tag to the file. Only applicable if the step type is <code>TAG</code>.</p>
@@ -2985,7 +2985,7 @@ export interface DescribedExecution {
2985
2985
  * <p>The status is one of the execution. Can be in progress, completed, exception encountered, or handling the exception.
2986
2986
  * </p>
2987
2987
  */
2988
- Status?: ExecutionStatus | string;
2988
+ Status?: ExecutionStatus;
2989
2989
  /**
2990
2990
  * @public
2991
2991
  * <p>A structure that describes the execution results. This includes a list of the steps along with the details of each step,
@@ -3082,7 +3082,7 @@ export interface DescribedProfile {
3082
3082
  * <p>Indicates whether to list only <code>LOCAL</code> type profiles or only <code>PARTNER</code> type profiles.
3083
3083
  * If not supplied in the request, the command lists all types of profiles.</p>
3084
3084
  */
3085
- ProfileType?: ProfileType | string;
3085
+ ProfileType?: ProfileType;
3086
3086
  /**
3087
3087
  * @public
3088
3088
  * <p>The <code>As2Id</code> is the <i>AS2-name</i>, as defined in the
@@ -3211,7 +3211,7 @@ export interface DescribedServer {
3211
3211
  * @public
3212
3212
  * <p>Specifies the domain of the storage system that is used for file transfers.</p>
3213
3213
  */
3214
- Domain?: Domain | string;
3214
+ Domain?: Domain;
3215
3215
  /**
3216
3216
  * @public
3217
3217
  * <p>The virtual private cloud (VPC) endpoint settings that are configured for your server.
@@ -3226,7 +3226,7 @@ export interface DescribedServer {
3226
3226
  * <p>Defines the type of endpoint that your server is connected to. If your server is connected
3227
3227
  * to a VPC endpoint, your server isn't accessible over the public internet.</p>
3228
3228
  */
3229
- EndpointType?: EndpointType | string;
3229
+ EndpointType?: EndpointType;
3230
3230
  /**
3231
3231
  * @public
3232
3232
  * <p>Specifies the Base64-encoded SHA256 fingerprint of the server's host key. This value
@@ -3257,7 +3257,7 @@ export interface DescribedServer {
3257
3257
  * If you choose this value, you must specify the ARN for the Lambda function in the <code>Function</code> parameter
3258
3258
  * for the <code>IdentityProviderDetails</code> data type.</p>
3259
3259
  */
3260
- IdentityProviderType?: IdentityProviderType | string;
3260
+ IdentityProviderType?: IdentityProviderType;
3261
3261
  /**
3262
3262
  * @public
3263
3263
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a server to turn
@@ -3336,7 +3336,7 @@ export interface DescribedServer {
3336
3336
  * </ul>
3337
3337
  * </note>
3338
3338
  */
3339
- Protocols?: (Protocol | string)[];
3339
+ Protocols?: Protocol[];
3340
3340
  /**
3341
3341
  * @public
3342
3342
  * <p>Specifies the name of the security policy that is attached to the server.</p>
@@ -3358,7 +3358,7 @@ export interface DescribedServer {
3358
3358
  * of <code>START_FAILED</code> or <code>STOP_FAILED</code> can indicate an error
3359
3359
  * condition.</p>
3360
3360
  */
3361
- State?: State | string;
3361
+ State?: State;
3362
3362
  /**
3363
3363
  * @public
3364
3364
  * <p>Specifies the key-value pairs that you can use to search for and group servers that were
@@ -3440,7 +3440,7 @@ export interface DescribedUser {
3440
3440
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
3441
3441
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
3442
3442
  * <note>
3443
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
3443
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
3444
3444
  * </note>
3445
3445
  */
3446
3446
  HomeDirectory?: string;
@@ -3475,7 +3475,7 @@ export interface DescribedUser {
3475
3475
  * template.</p>
3476
3476
  * </note>
3477
3477
  */
3478
- HomeDirectoryType?: HomeDirectoryType | string;
3478
+ HomeDirectoryType?: HomeDirectoryType;
3479
3479
  /**
3480
3480
  * @public
3481
3481
  * <p>A session policy for your user so that you can use the same Identity and Access Management (IAM) role across multiple users. This policy scopes down a user's
@@ -3733,7 +3733,7 @@ export interface ImportCertificateRequest {
3733
3733
  * @public
3734
3734
  * <p>Specifies whether this certificate is used for signing or encryption.</p>
3735
3735
  */
3736
- Usage: CertificateUsageType | string | undefined;
3736
+ Usage: CertificateUsageType | undefined;
3737
3737
  /**
3738
3738
  * @public
3739
3739
  * <ul>
@@ -3929,7 +3929,7 @@ export interface ListedAccess {
3929
3929
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
3930
3930
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
3931
3931
  * <note>
3932
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
3932
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
3933
3933
  * </note>
3934
3934
  */
3935
3935
  HomeDirectory?: string;
@@ -3948,7 +3948,7 @@ export interface ListedAccess {
3948
3948
  * template.</p>
3949
3949
  * </note>
3950
3950
  */
3951
- HomeDirectoryType?: HomeDirectoryType | string;
3951
+ HomeDirectoryType?: HomeDirectoryType;
3952
3952
  /**
3953
3953
  * @public
3954
3954
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that controls your users' access to your Amazon S3
@@ -4044,7 +4044,7 @@ export interface ListedAgreement {
4044
4044
  * @public
4045
4045
  * <p>The agreement can be either <code>ACTIVE</code> or <code>INACTIVE</code>.</p>
4046
4046
  */
4047
- Status?: AgreementStatusType | string;
4047
+ Status?: AgreementStatusType;
4048
4048
  /**
4049
4049
  * @public
4050
4050
  * <p>The unique identifier for the agreement.</p>
@@ -4114,14 +4114,14 @@ export interface ListedCertificate {
4114
4114
  * @public
4115
4115
  * <p>Specifies whether this certificate is used for signing or encryption.</p>
4116
4116
  */
4117
- Usage?: CertificateUsageType | string;
4117
+ Usage?: CertificateUsageType;
4118
4118
  /**
4119
4119
  * @public
4120
4120
  * <p>The certificate can be either <code>ACTIVE</code>, <code>PENDING_ROTATION</code>, or
4121
4121
  * <code>INACTIVE</code>. <code>PENDING_ROTATION</code> means that this certificate will
4122
4122
  * replace the current certificate when it expires.</p>
4123
4123
  */
4124
- Status?: CertificateStatusType | string;
4124
+ Status?: CertificateStatusType;
4125
4125
  /**
4126
4126
  * @public
4127
4127
  * <p>An optional date that specifies when the certificate becomes active.</p>
@@ -4138,7 +4138,7 @@ export interface ListedCertificate {
4138
4138
  * type is <code>CERTIFICATE_WITH_PRIVATE_KEY</code>. If there is no private key, the type is
4139
4139
  * <code>CERTIFICATE</code>.</p>
4140
4140
  */
4141
- Type?: CertificateType | string;
4141
+ Type?: CertificateType;
4142
4142
  /**
4143
4143
  * @public
4144
4144
  * <p>The name or short description that's used to identify the certificate.</p>
@@ -4242,7 +4242,7 @@ export interface ListedExecution {
4242
4242
  * @public
4243
4243
  * <p>The status is one of the execution. Can be in progress, completed, exception encountered, or handling the exception.</p>
4244
4244
  */
4245
- Status?: ExecutionStatus | string;
4245
+ Status?: ExecutionStatus;
4246
4246
  }
4247
4247
  /**
4248
4248
  * @public
@@ -4336,7 +4336,7 @@ export interface ListedProfile {
4336
4336
  * <p>Indicates whether to list only <code>LOCAL</code> type profiles or only <code>PARTNER</code> type profiles.
4337
4337
  * If not supplied in the request, the command lists all types of profiles.</p>
4338
4338
  */
4339
- ProfileType?: ProfileType | string;
4339
+ ProfileType?: ProfileType;
4340
4340
  }
4341
4341
  /**
4342
4342
  * @public
@@ -4352,7 +4352,7 @@ export interface ListedServer {
4352
4352
  * @public
4353
4353
  * <p>Specifies the domain of the storage system that is used for file transfers.</p>
4354
4354
  */
4355
- Domain?: Domain | string;
4355
+ Domain?: Domain;
4356
4356
  /**
4357
4357
  * @public
4358
4358
  * <p>The mode of authentication for a server. The default value is
@@ -4369,13 +4369,13 @@ export interface ListedServer {
4369
4369
  * If you choose this value, you must specify the ARN for the Lambda function in the <code>Function</code> parameter
4370
4370
  * for the <code>IdentityProviderDetails</code> data type.</p>
4371
4371
  */
4372
- IdentityProviderType?: IdentityProviderType | string;
4372
+ IdentityProviderType?: IdentityProviderType;
4373
4373
  /**
4374
4374
  * @public
4375
4375
  * <p>Specifies the type of VPC endpoint that your server is connected to. If your server is
4376
4376
  * connected to a VPC endpoint, your server isn't accessible over the public internet.</p>
4377
4377
  */
4378
- EndpointType?: EndpointType | string;
4378
+ EndpointType?: EndpointType;
4379
4379
  /**
4380
4380
  * @public
4381
4381
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that allows a server to turn
@@ -4399,7 +4399,7 @@ export interface ListedServer {
4399
4399
  * of <code>START_FAILED</code> or <code>STOP_FAILED</code> can indicate an error
4400
4400
  * condition.</p>
4401
4401
  */
4402
- State?: State | string;
4402
+ State?: State;
4403
4403
  /**
4404
4404
  * @public
4405
4405
  * <p>Specifies the number of users that are assigned to a server you specified with the
@@ -4423,7 +4423,7 @@ export interface ListedUser {
4423
4423
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
4424
4424
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
4425
4425
  * <note>
4426
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
4426
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
4427
4427
  * </note>
4428
4428
  */
4429
4429
  HomeDirectory?: string;
@@ -4442,7 +4442,7 @@ export interface ListedUser {
4442
4442
  * template.</p>
4443
4443
  * </note>
4444
4444
  */
4445
- HomeDirectoryType?: HomeDirectoryType | string;
4445
+ HomeDirectoryType?: HomeDirectoryType;
4446
4446
  /**
4447
4447
  * @public
4448
4448
  * <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that controls your users' access to your Amazon S3
@@ -4619,7 +4619,7 @@ export interface ListProfilesRequest {
4619
4619
  * <p>Indicates whether to list only <code>LOCAL</code> type profiles or only <code>PARTNER</code> type profiles.
4620
4620
  * If not supplied in the request, the command lists all types of profiles.</p>
4621
4621
  */
4622
- ProfileType?: ProfileType | string;
4622
+ ProfileType?: ProfileType;
4623
4623
  }
4624
4624
  /**
4625
4625
  * @public
@@ -4864,7 +4864,7 @@ export interface SendWorkflowStepStateRequest {
4864
4864
  * @public
4865
4865
  * <p>Indicates whether the specified step succeeded or failed.</p>
4866
4866
  */
4867
- Status: CustomStepStatus | string | undefined;
4867
+ Status: CustomStepStatus | undefined;
4868
4868
  }
4869
4869
  /**
4870
4870
  * @public
@@ -5038,7 +5038,7 @@ export interface TestIdentityProviderRequest {
5038
5038
  * </li>
5039
5039
  * </ul>
5040
5040
  */
5041
- ServerProtocol?: Protocol | string;
5041
+ ServerProtocol?: Protocol;
5042
5042
  /**
5043
5043
  * @public
5044
5044
  * <p>The source IP address of the account to be tested.</p>
@@ -5109,7 +5109,7 @@ export interface UpdateAccessRequest {
5109
5109
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
5110
5110
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
5111
5111
  * <note>
5112
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
5112
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
5113
5113
  * </note>
5114
5114
  */
5115
5115
  HomeDirectory?: string;
@@ -5128,7 +5128,7 @@ export interface UpdateAccessRequest {
5128
5128
  * template.</p>
5129
5129
  * </note>
5130
5130
  */
5131
- HomeDirectoryType?: HomeDirectoryType | string;
5131
+ HomeDirectoryType?: HomeDirectoryType;
5132
5132
  /**
5133
5133
  * @public
5134
5134
  * <p>Logical directory mappings that specify what Amazon S3 or Amazon EFS paths and keys should
@@ -5247,7 +5247,7 @@ export interface UpdateAgreementRequest {
5247
5247
  * <p>You can update the status for the agreement, either activating an inactive agreement or
5248
5248
  * the reverse.</p>
5249
5249
  */
5250
- Status?: AgreementStatusType | string;
5250
+ Status?: AgreementStatusType;
5251
5251
  /**
5252
5252
  * @public
5253
5253
  * <p>A unique identifier for the AS2 local profile.</p>
@@ -5578,7 +5578,7 @@ export interface UpdateServerRequest {
5578
5578
  * <code>EndpointType</code> set to <code>VPC_ENDPOINT</code>.</p>
5579
5579
  * </note>
5580
5580
  */
5581
- EndpointType?: EndpointType | string;
5581
+ EndpointType?: EndpointType;
5582
5582
  /**
5583
5583
  * @public
5584
5584
  * <p>The RSA, ECDSA, or ED25519 private key to use for your SFTP-enabled server. You can add multiple host keys, in case you want
@@ -5687,7 +5687,7 @@ export interface UpdateServerRequest {
5687
5687
  * </ul>
5688
5688
  * </note>
5689
5689
  */
5690
- Protocols?: (Protocol | string)[];
5690
+ Protocols?: Protocol[];
5691
5691
  /**
5692
5692
  * @public
5693
5693
  * <p>Specifies the name of the security policy that is attached to the server.</p>
@@ -5748,7 +5748,7 @@ export interface UpdateUserRequest {
5748
5748
  * <p>The landing directory (folder) for a user when they log in to the server using the client.</p>
5749
5749
  * <p>A <code>HomeDirectory</code> example is <code>/bucket_name/home/mydirectory</code>.</p>
5750
5750
  * <note>
5751
- * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>LOGICAL</code>.</p>
5751
+ * <p>The <code>HomeDirectory</code> parameter is only used if <code>HomeDirectoryType</code> is set to <code>PATH</code>.</p>
5752
5752
  * </note>
5753
5753
  */
5754
5754
  HomeDirectory?: string;
@@ -5767,7 +5767,7 @@ export interface UpdateUserRequest {
5767
5767
  * template.</p>
5768
5768
  * </note>
5769
5769
  */
5770
- HomeDirectoryType?: HomeDirectoryType | string;
5770
+ HomeDirectoryType?: HomeDirectoryType;
5771
5771
  /**
5772
5772
  * @public
5773
5773
  * <p>Logical directory mappings that specify what Amazon S3 or Amazon EFS paths and keys should
@@ -53,11 +53,11 @@ export interface As2ConnectorConfig {
53
53
  LocalProfileId?: string;
54
54
  PartnerProfileId?: string;
55
55
  MessageSubject?: string;
56
- Compression?: CompressionEnum | string;
57
- EncryptionAlgorithm?: EncryptionAlg | string;
58
- SigningAlgorithm?: SigningAlg | string;
59
- MdnSigningAlgorithm?: MdnSigningAlg | string;
60
- MdnResponse?: MdnResponse | string;
56
+ Compression?: CompressionEnum;
57
+ EncryptionAlgorithm?: EncryptionAlg;
58
+ SigningAlgorithm?: SigningAlg;
59
+ MdnSigningAlgorithm?: MdnSigningAlg;
60
+ MdnResponse?: MdnResponse;
61
61
  BasicAuthSecretId?: string;
62
62
  }
63
63
  export declare const As2Transport: {
@@ -110,7 +110,7 @@ export type OverwriteExisting =
110
110
  export interface CopyStepDetails {
111
111
  Name?: string;
112
112
  DestinationFileLocation?: InputFileLocation;
113
- OverwriteExisting?: OverwriteExisting | string;
113
+ OverwriteExisting?: OverwriteExisting;
114
114
  SourceFileLocation?: string;
115
115
  }
116
116
  export interface HomeDirectoryMapEntry {
@@ -130,7 +130,7 @@ export interface PosixProfile {
130
130
  }
131
131
  export interface CreateAccessRequest {
132
132
  HomeDirectory?: string;
133
- HomeDirectoryType?: HomeDirectoryType | string;
133
+ HomeDirectoryType?: HomeDirectoryType;
134
134
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
135
135
  Policy?: string;
136
136
  PosixProfile?: PosixProfile;
@@ -197,7 +197,7 @@ export interface CreateAgreementRequest {
197
197
  PartnerProfileId: string | undefined;
198
198
  BaseDirectory: string | undefined;
199
199
  AccessRole: string | undefined;
200
- Status?: AgreementStatusType | string;
200
+ Status?: AgreementStatusType;
201
201
  Tags?: Tag[];
202
202
  }
203
203
  export interface CreateAgreementResponse {
@@ -233,7 +233,7 @@ export declare const ProfileType: {
233
233
  export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
234
234
  export interface CreateProfileRequest {
235
235
  As2Id: string | undefined;
236
- ProfileType: ProfileType | string | undefined;
236
+ ProfileType: ProfileType | undefined;
237
237
  CertificateIds?: string[];
238
238
  Tags?: Tag[];
239
239
  }
@@ -271,7 +271,7 @@ export interface IdentityProviderDetails {
271
271
  InvocationRole?: string;
272
272
  DirectoryId?: string;
273
273
  Function?: string;
274
- SftpAuthenticationMethods?: SftpAuthenticationMethods | string;
274
+ SftpAuthenticationMethods?: SftpAuthenticationMethods;
275
275
  }
276
276
  export declare const IdentityProviderType: {
277
277
  readonly API_GATEWAY: "API_GATEWAY";
@@ -295,9 +295,9 @@ export type TlsSessionResumptionMode =
295
295
  (typeof TlsSessionResumptionMode)[keyof typeof TlsSessionResumptionMode];
296
296
  export interface ProtocolDetails {
297
297
  PassiveIp?: string;
298
- TlsSessionResumptionMode?: TlsSessionResumptionMode | string;
299
- SetStatOption?: SetStatOption | string;
300
- As2Transports?: (As2Transport | string)[];
298
+ TlsSessionResumptionMode?: TlsSessionResumptionMode;
299
+ SetStatOption?: SetStatOption;
300
+ As2Transports?: As2Transport[];
301
301
  }
302
302
  export declare const Protocol: {
303
303
  readonly AS2: "AS2";
@@ -316,16 +316,16 @@ export interface WorkflowDetails {
316
316
  }
317
317
  export interface CreateServerRequest {
318
318
  Certificate?: string;
319
- Domain?: Domain | string;
319
+ Domain?: Domain;
320
320
  EndpointDetails?: EndpointDetails;
321
- EndpointType?: EndpointType | string;
321
+ EndpointType?: EndpointType;
322
322
  HostKey?: string;
323
323
  IdentityProviderDetails?: IdentityProviderDetails;
324
- IdentityProviderType?: IdentityProviderType | string;
324
+ IdentityProviderType?: IdentityProviderType;
325
325
  LoggingRole?: string;
326
326
  PostAuthenticationLoginBanner?: string;
327
327
  PreAuthenticationLoginBanner?: string;
328
- Protocols?: (Protocol | string)[];
328
+ Protocols?: Protocol[];
329
329
  ProtocolDetails?: ProtocolDetails;
330
330
  SecurityPolicyName?: string;
331
331
  Tags?: Tag[];
@@ -337,7 +337,7 @@ export interface CreateServerResponse {
337
337
  }
338
338
  export interface CreateUserRequest {
339
339
  HomeDirectory?: string;
340
- HomeDirectoryType?: HomeDirectoryType | string;
340
+ HomeDirectoryType?: HomeDirectoryType;
341
341
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
342
342
  Policy?: string;
343
343
  PosixProfile?: PosixProfile;
@@ -364,9 +364,9 @@ export type EncryptionType =
364
364
  (typeof EncryptionType)[keyof typeof EncryptionType];
365
365
  export interface DecryptStepDetails {
366
366
  Name?: string;
367
- Type: EncryptionType | string | undefined;
367
+ Type: EncryptionType | undefined;
368
368
  SourceFileLocation?: string;
369
- OverwriteExisting?: OverwriteExisting | string;
369
+ OverwriteExisting?: OverwriteExisting;
370
370
  DestinationFileLocation: InputFileLocation | undefined;
371
371
  }
372
372
  export interface DeleteStepDetails {
@@ -392,7 +392,7 @@ export declare const WorkflowStepType: {
392
392
  export type WorkflowStepType =
393
393
  (typeof WorkflowStepType)[keyof typeof WorkflowStepType];
394
394
  export interface WorkflowStep {
395
- Type?: WorkflowStepType | string;
395
+ Type?: WorkflowStepType;
396
396
  CopyStepDetails?: CopyStepDetails;
397
397
  CustomStepDetails?: CustomStepDetails;
398
398
  DeleteStepDetails?: DeleteStepDetails;
@@ -457,7 +457,7 @@ export interface DescribeAccessRequest {
457
457
  export interface DescribedAccess {
458
458
  HomeDirectory?: string;
459
459
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
460
- HomeDirectoryType?: HomeDirectoryType | string;
460
+ HomeDirectoryType?: HomeDirectoryType;
461
461
  Policy?: string;
462
462
  PosixProfile?: PosixProfile;
463
463
  Role?: string;
@@ -475,7 +475,7 @@ export interface DescribedAgreement {
475
475
  Arn: string | undefined;
476
476
  AgreementId?: string;
477
477
  Description?: string;
478
- Status?: AgreementStatusType | string;
478
+ Status?: AgreementStatusType;
479
479
  ServerId?: string;
480
480
  LocalProfileId?: string;
481
481
  PartnerProfileId?: string;
@@ -492,8 +492,8 @@ export interface DescribeCertificateRequest {
492
492
  export interface DescribedCertificate {
493
493
  Arn: string | undefined;
494
494
  CertificateId?: string;
495
- Usage?: CertificateUsageType | string;
496
- Status?: CertificateStatusType | string;
495
+ Usage?: CertificateUsageType;
496
+ Status?: CertificateStatusType;
497
497
  Certificate?: string;
498
498
  CertificateChain?: string;
499
499
  ActiveDate?: Date;
@@ -501,7 +501,7 @@ export interface DescribedCertificate {
501
501
  Serial?: string;
502
502
  NotBeforeDate?: Date;
503
503
  NotAfterDate?: Date;
504
- Type?: CertificateType | string;
504
+ Type?: CertificateType;
505
505
  Description?: string;
506
506
  Tags?: Tag[];
507
507
  }
@@ -551,11 +551,11 @@ export declare const ExecutionErrorType: {
551
551
  export type ExecutionErrorType =
552
552
  (typeof ExecutionErrorType)[keyof typeof ExecutionErrorType];
553
553
  export interface ExecutionError {
554
- Type: ExecutionErrorType | string | undefined;
554
+ Type: ExecutionErrorType | undefined;
555
555
  Message: string | undefined;
556
556
  }
557
557
  export interface ExecutionStepResult {
558
- StepType?: WorkflowStepType | string;
558
+ StepType?: WorkflowStepType;
559
559
  Outputs?: string;
560
560
  Error?: ExecutionError;
561
561
  }
@@ -586,7 +586,7 @@ export interface DescribedExecution {
586
586
  ExecutionRole?: string;
587
587
  LoggingConfiguration?: LoggingConfiguration;
588
588
  PosixProfile?: PosixProfile;
589
- Status?: ExecutionStatus | string;
589
+ Status?: ExecutionStatus;
590
590
  Results?: ExecutionResults;
591
591
  }
592
592
  export interface DescribedHostKey {
@@ -601,7 +601,7 @@ export interface DescribedHostKey {
601
601
  export interface DescribedProfile {
602
602
  Arn: string | undefined;
603
603
  ProfileId?: string;
604
- ProfileType?: ProfileType | string;
604
+ ProfileType?: ProfileType;
605
605
  As2Id?: string;
606
606
  CertificateIds?: string[];
607
607
  Tags?: Tag[];
@@ -627,19 +627,19 @@ export interface DescribedServer {
627
627
  Arn: string | undefined;
628
628
  Certificate?: string;
629
629
  ProtocolDetails?: ProtocolDetails;
630
- Domain?: Domain | string;
630
+ Domain?: Domain;
631
631
  EndpointDetails?: EndpointDetails;
632
- EndpointType?: EndpointType | string;
632
+ EndpointType?: EndpointType;
633
633
  HostKeyFingerprint?: string;
634
634
  IdentityProviderDetails?: IdentityProviderDetails;
635
- IdentityProviderType?: IdentityProviderType | string;
635
+ IdentityProviderType?: IdentityProviderType;
636
636
  LoggingRole?: string;
637
637
  PostAuthenticationLoginBanner?: string;
638
638
  PreAuthenticationLoginBanner?: string;
639
- Protocols?: (Protocol | string)[];
639
+ Protocols?: Protocol[];
640
640
  SecurityPolicyName?: string;
641
641
  ServerId?: string;
642
- State?: State | string;
642
+ State?: State;
643
643
  Tags?: Tag[];
644
644
  UserCount?: number;
645
645
  WorkflowDetails?: WorkflowDetails;
@@ -654,7 +654,7 @@ export interface DescribedUser {
654
654
  Arn: string | undefined;
655
655
  HomeDirectory?: string;
656
656
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
657
- HomeDirectoryType?: HomeDirectoryType | string;
657
+ HomeDirectoryType?: HomeDirectoryType;
658
658
  Policy?: string;
659
659
  PosixProfile?: PosixProfile;
660
660
  Role?: string;
@@ -718,7 +718,7 @@ export interface DescribeWorkflowResponse {
718
718
  Workflow: DescribedWorkflow | undefined;
719
719
  }
720
720
  export interface ImportCertificateRequest {
721
- Usage: CertificateUsageType | string | undefined;
721
+ Usage: CertificateUsageType | undefined;
722
722
  Certificate: string | undefined;
723
723
  CertificateChain?: string;
724
724
  PrivateKey?: string;
@@ -765,7 +765,7 @@ export interface ListAccessesRequest {
765
765
  }
766
766
  export interface ListedAccess {
767
767
  HomeDirectory?: string;
768
- HomeDirectoryType?: HomeDirectoryType | string;
768
+ HomeDirectoryType?: HomeDirectoryType;
769
769
  Role?: string;
770
770
  ExternalId?: string;
771
771
  }
@@ -783,7 +783,7 @@ export interface ListedAgreement {
783
783
  Arn?: string;
784
784
  AgreementId?: string;
785
785
  Description?: string;
786
- Status?: AgreementStatusType | string;
786
+ Status?: AgreementStatusType;
787
787
  ServerId?: string;
788
788
  LocalProfileId?: string;
789
789
  PartnerProfileId?: string;
@@ -799,11 +799,11 @@ export interface ListCertificatesRequest {
799
799
  export interface ListedCertificate {
800
800
  Arn?: string;
801
801
  CertificateId?: string;
802
- Usage?: CertificateUsageType | string;
803
- Status?: CertificateStatusType | string;
802
+ Usage?: CertificateUsageType;
803
+ Status?: CertificateStatusType;
804
804
  ActiveDate?: Date;
805
805
  InactiveDate?: Date;
806
- Type?: CertificateType | string;
806
+ Type?: CertificateType;
807
807
  Description?: string;
808
808
  }
809
809
  export interface ListCertificatesResponse {
@@ -827,7 +827,7 @@ export interface ListedExecution {
827
827
  ExecutionId?: string;
828
828
  InitialFileLocation?: FileLocation;
829
829
  ServiceMetadata?: ServiceMetadata;
830
- Status?: ExecutionStatus | string;
830
+ Status?: ExecutionStatus;
831
831
  }
832
832
  export interface ListedHostKey {
833
833
  Arn: string | undefined;
@@ -841,22 +841,22 @@ export interface ListedProfile {
841
841
  Arn?: string;
842
842
  ProfileId?: string;
843
843
  As2Id?: string;
844
- ProfileType?: ProfileType | string;
844
+ ProfileType?: ProfileType;
845
845
  }
846
846
  export interface ListedServer {
847
847
  Arn: string | undefined;
848
- Domain?: Domain | string;
849
- IdentityProviderType?: IdentityProviderType | string;
850
- EndpointType?: EndpointType | string;
848
+ Domain?: Domain;
849
+ IdentityProviderType?: IdentityProviderType;
850
+ EndpointType?: EndpointType;
851
851
  LoggingRole?: string;
852
852
  ServerId?: string;
853
- State?: State | string;
853
+ State?: State;
854
854
  UserCount?: number;
855
855
  }
856
856
  export interface ListedUser {
857
857
  Arn: string | undefined;
858
858
  HomeDirectory?: string;
859
- HomeDirectoryType?: HomeDirectoryType | string;
859
+ HomeDirectoryType?: HomeDirectoryType;
860
860
  Role?: string;
861
861
  SshPublicKeyCount?: number;
862
862
  UserName?: string;
@@ -889,7 +889,7 @@ export interface ListHostKeysResponse {
889
889
  export interface ListProfilesRequest {
890
890
  MaxResults?: number;
891
891
  NextToken?: string;
892
- ProfileType?: ProfileType | string;
892
+ ProfileType?: ProfileType;
893
893
  }
894
894
  export interface ListProfilesResponse {
895
895
  NextToken?: string;
@@ -943,7 +943,7 @@ export interface SendWorkflowStepStateRequest {
943
943
  WorkflowId: string | undefined;
944
944
  ExecutionId: string | undefined;
945
945
  Token: string | undefined;
946
- Status: CustomStepStatus | string | undefined;
946
+ Status: CustomStepStatus | undefined;
947
947
  }
948
948
  export interface SendWorkflowStepStateResponse {}
949
949
  export interface StartFileTransferRequest {
@@ -976,7 +976,7 @@ export interface TestConnectionResponse {
976
976
  }
977
977
  export interface TestIdentityProviderRequest {
978
978
  ServerId: string | undefined;
979
- ServerProtocol?: Protocol | string;
979
+ ServerProtocol?: Protocol;
980
980
  SourceIp?: string;
981
981
  UserName: string | undefined;
982
982
  UserPassword?: string;
@@ -993,7 +993,7 @@ export interface UntagResourceRequest {
993
993
  }
994
994
  export interface UpdateAccessRequest {
995
995
  HomeDirectory?: string;
996
- HomeDirectoryType?: HomeDirectoryType | string;
996
+ HomeDirectoryType?: HomeDirectoryType;
997
997
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
998
998
  Policy?: string;
999
999
  PosixProfile?: PosixProfile;
@@ -1009,7 +1009,7 @@ export interface UpdateAgreementRequest {
1009
1009
  AgreementId: string | undefined;
1010
1010
  ServerId: string | undefined;
1011
1011
  Description?: string;
1012
- Status?: AgreementStatusType | string;
1012
+ Status?: AgreementStatusType;
1013
1013
  LocalProfileId?: string;
1014
1014
  PartnerProfileId?: string;
1015
1015
  BaseDirectory?: string;
@@ -1058,13 +1058,13 @@ export interface UpdateServerRequest {
1058
1058
  Certificate?: string;
1059
1059
  ProtocolDetails?: ProtocolDetails;
1060
1060
  EndpointDetails?: EndpointDetails;
1061
- EndpointType?: EndpointType | string;
1061
+ EndpointType?: EndpointType;
1062
1062
  HostKey?: string;
1063
1063
  IdentityProviderDetails?: IdentityProviderDetails;
1064
1064
  LoggingRole?: string;
1065
1065
  PostAuthenticationLoginBanner?: string;
1066
1066
  PreAuthenticationLoginBanner?: string;
1067
- Protocols?: (Protocol | string)[];
1067
+ Protocols?: Protocol[];
1068
1068
  SecurityPolicyName?: string;
1069
1069
  ServerId: string | undefined;
1070
1070
  WorkflowDetails?: WorkflowDetails;
@@ -1075,7 +1075,7 @@ export interface UpdateServerResponse {
1075
1075
  }
1076
1076
  export interface UpdateUserRequest {
1077
1077
  HomeDirectory?: string;
1078
- HomeDirectoryType?: HomeDirectoryType | string;
1078
+ HomeDirectoryType?: HomeDirectoryType;
1079
1079
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
1080
1080
  Policy?: string;
1081
1081
  PosixProfile?: PosixProfile;
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.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "@smithy/util-waiter": "^2.0.11",