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.
- package/CHANGELOG.md +12 -1
- package/README.md +1 -1
- package/apis/acm-pca-2017-08-22.min.json +13 -11
- package/apis/batch-2016-08-10.min.json +383 -95
- package/apis/cognito-idp-2016-04-18.min.json +156 -153
- package/apis/datasync-2018-11-09.min.json +40 -28
- package/apis/s3-2006-03-01.examples.json +132 -132
- package/apis/sagemaker-2017-07-24.min.json +624 -513
- package/apis/sagemaker-2017-07-24.paginators.json +6 -0
- package/clients/acmpca.d.ts +10 -1
- package/clients/batch.d.ts +542 -157
- package/clients/cognitoidentityserviceprovider.d.ts +38 -25
- package/clients/datasync.d.ts +45 -28
- package/clients/sagemaker.d.ts +105 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +159 -156
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -68,11 +68,11 @@ declare class CognitoIdentityServiceProvider extends Service {
|
|
|
68
68
|
*/
|
|
69
69
|
adminDisableProviderForUser(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminDisableProviderForUserResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminDisableProviderForUserResponse, AWSError>;
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
71
|
+
* Deactivates a user and revokes all access tokens for the user. A deactivated user can't sign in, but still appears in the responses to GetUser and ListUsers API requests. You must make this API request with Amazon Web Services credentials that have cognito-idp:AdminDisableUser permissions.
|
|
72
72
|
*/
|
|
73
73
|
adminDisableUser(params: CognitoIdentityServiceProvider.Types.AdminDisableUserRequest, callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminDisableUserResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminDisableUserResponse, AWSError>;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Deactivates a user and revokes all access tokens for the user. A deactivated user can't sign in, but still appears in the responses to GetUser and ListUsers API requests. You must make this API request with Amazon Web Services credentials that have cognito-idp:AdminDisableUser permissions.
|
|
76
76
|
*/
|
|
77
77
|
adminDisableUser(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminDisableUserResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminDisableUserResponse, AWSError>;
|
|
78
78
|
/**
|
|
@@ -492,11 +492,11 @@ declare class CognitoIdentityServiceProvider extends Service {
|
|
|
492
492
|
*/
|
|
493
493
|
getIdentityProviderByIdentifier(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GetIdentityProviderByIdentifierResponse) => void): Request<CognitoIdentityServiceProvider.Types.GetIdentityProviderByIdentifierResponse, AWSError>;
|
|
494
494
|
/**
|
|
495
|
-
* This method takes a user pool ID, and returns the signing certificate.
|
|
495
|
+
* This method takes a user pool ID, and returns the signing certificate. The issued certificate is valid for 10 years from the date of issue. Amazon Cognito issues and assigns a new signing certificate annually. This process returns a new value in the response to GetSigningCertificate, but doesn't invalidate the original certificate.
|
|
496
496
|
*/
|
|
497
497
|
getSigningCertificate(params: CognitoIdentityServiceProvider.Types.GetSigningCertificateRequest, callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GetSigningCertificateResponse) => void): Request<CognitoIdentityServiceProvider.Types.GetSigningCertificateResponse, AWSError>;
|
|
498
498
|
/**
|
|
499
|
-
* This method takes a user pool ID, and returns the signing certificate.
|
|
499
|
+
* This method takes a user pool ID, and returns the signing certificate. The issued certificate is valid for 10 years from the date of issue. Amazon Cognito issues and assigns a new signing certificate annually. This process returns a new value in the response to GetSigningCertificate, but doesn't invalidate the original certificate.
|
|
500
500
|
*/
|
|
501
501
|
getSigningCertificate(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GetSigningCertificateResponse) => void): Request<CognitoIdentityServiceProvider.Types.GetSigningCertificateResponse, AWSError>;
|
|
502
502
|
/**
|
|
@@ -532,11 +532,11 @@ declare class CognitoIdentityServiceProvider extends Service {
|
|
|
532
532
|
*/
|
|
533
533
|
getUserPoolMfaConfig(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GetUserPoolMfaConfigResponse) => void): Request<CognitoIdentityServiceProvider.Types.GetUserPoolMfaConfigResponse, AWSError>;
|
|
534
534
|
/**
|
|
535
|
-
* Signs out users from all devices. It also invalidates all refresh tokens that Amazon Cognito has issued to a user.
|
|
535
|
+
* Signs out users from all devices. It also invalidates all refresh tokens that Amazon Cognito has issued to a user. A user can still use a hosted UI cookie to retrieve new tokens for the duration of the 1-hour cookie validity period.
|
|
536
536
|
*/
|
|
537
537
|
globalSignOut(params: CognitoIdentityServiceProvider.Types.GlobalSignOutRequest, callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GlobalSignOutResponse) => void): Request<CognitoIdentityServiceProvider.Types.GlobalSignOutResponse, AWSError>;
|
|
538
538
|
/**
|
|
539
|
-
* Signs out users from all devices. It also invalidates all refresh tokens that Amazon Cognito has issued to a user.
|
|
539
|
+
* Signs out users from all devices. It also invalidates all refresh tokens that Amazon Cognito has issued to a user. A user can still use a hosted UI cookie to retrieve new tokens for the duration of the 1-hour cookie validity period.
|
|
540
540
|
*/
|
|
541
541
|
globalSignOut(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.GlobalSignOutResponse) => void): Request<CognitoIdentityServiceProvider.Types.GlobalSignOutResponse, AWSError>;
|
|
542
542
|
/**
|
|
@@ -644,11 +644,11 @@ declare class CognitoIdentityServiceProvider extends Service {
|
|
|
644
644
|
*/
|
|
645
645
|
respondToAuthChallenge(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.RespondToAuthChallengeResponse) => void): Request<CognitoIdentityServiceProvider.Types.RespondToAuthChallengeResponse, AWSError>;
|
|
646
646
|
/**
|
|
647
|
-
* Revokes all of the access tokens generated by the specified refresh token. After
|
|
647
|
+
* Revokes all of the access tokens generated by, and at the same time as, the specified refresh token. After a token is revoked, you can't use the revoked token to access Amazon Cognito user APIs, or to authorize access to your resource server.
|
|
648
648
|
*/
|
|
649
649
|
revokeToken(params: CognitoIdentityServiceProvider.Types.RevokeTokenRequest, callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.RevokeTokenResponse) => void): Request<CognitoIdentityServiceProvider.Types.RevokeTokenResponse, AWSError>;
|
|
650
650
|
/**
|
|
651
|
-
* Revokes all of the access tokens generated by the specified refresh token. After
|
|
651
|
+
* Revokes all of the access tokens generated by, and at the same time as, the specified refresh token. After a token is revoked, you can't use the revoked token to access Amazon Cognito user APIs, or to authorize access to your resource server.
|
|
652
652
|
*/
|
|
653
653
|
revokeToken(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.RevokeTokenResponse) => void): Request<CognitoIdentityServiceProvider.Types.RevokeTokenResponse, AWSError>;
|
|
654
654
|
/**
|
|
@@ -1240,7 +1240,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
1240
1240
|
*/
|
|
1241
1241
|
Username: UsernameType;
|
|
1242
1242
|
/**
|
|
1243
|
-
* The maximum number of authentication events to return.
|
|
1243
|
+
* The maximum number of authentication events to return. Returns 60 events if you set MaxResults to 0, or if you don't include a MaxResults parameter.
|
|
1244
1244
|
*/
|
|
1245
1245
|
MaxResults?: QueryLimitType;
|
|
1246
1246
|
/**
|
|
@@ -1915,15 +1915,15 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
1915
1915
|
*/
|
|
1916
1916
|
GenerateSecret?: GenerateSecret;
|
|
1917
1917
|
/**
|
|
1918
|
-
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds.
|
|
1918
|
+
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your refresh tokens are valid for 30 days.
|
|
1919
1919
|
*/
|
|
1920
1920
|
RefreshTokenValidity?: RefreshTokenValidityType;
|
|
1921
1921
|
/**
|
|
1922
|
-
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
1922
|
+
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your access tokens are valid for one hour.
|
|
1923
1923
|
*/
|
|
1924
1924
|
AccessTokenValidity?: AccessTokenValidityType;
|
|
1925
1925
|
/**
|
|
1926
|
-
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
1926
|
+
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your ID tokens are valid for one hour.
|
|
1927
1927
|
*/
|
|
1928
1928
|
IdTokenValidity?: IdTokenValidityType;
|
|
1929
1929
|
/**
|
|
@@ -1939,7 +1939,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
1939
1939
|
*/
|
|
1940
1940
|
WriteAttributes?: ClientPermissionListType;
|
|
1941
1941
|
/**
|
|
1942
|
-
* The authentication flows that
|
|
1942
|
+
* The authentication flows that you want your user pool client to support. For each app client in your user pool, you can sign in your users with any combination of one or more flows, including with a user name and Secure Remote Password (SRP), a user name and password, or a custom authentication process that you define with Lambda functions. If you don't specify a value for ExplicitAuthFlows, your user client supports ALLOW_REFRESH_TOKEN_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_CUSTOM_AUTH. Valid values include: ALLOW_ADMIN_USER_PASSWORD_AUTH: Enable admin based user password authentication flow ADMIN_USER_PASSWORD_AUTH. This setting replaces the ADMIN_NO_SRP_AUTH setting. With this authentication flow, your app passes a user name and password to Amazon Cognito in the request, instead of using the Secure Remote Password (SRP) protocol to securely transmit the password. ALLOW_CUSTOM_AUTH: Enable Lambda trigger based authentication. ALLOW_USER_PASSWORD_AUTH: Enable user password-based authentication. In this flow, Amazon Cognito receives the password in the request instead of using the SRP protocol to verify passwords. ALLOW_USER_SRP_AUTH: Enable SRP-based authentication. ALLOW_REFRESH_TOKEN_AUTH: Enable authflow to refresh tokens. In some environments, you will see the values ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, or USER_PASSWORD_AUTH. You can't assign these legacy ExplicitAuthFlows values to user pool clients at the same time as values that begin with ALLOW_, like ALLOW_USER_SRP_AUTH.
|
|
1943
1943
|
*/
|
|
1944
1944
|
ExplicitAuthFlows?: ExplicitAuthFlowsListType;
|
|
1945
1945
|
/**
|
|
@@ -2026,6 +2026,10 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
2026
2026
|
* The policies associated with the new user pool.
|
|
2027
2027
|
*/
|
|
2028
2028
|
Policies?: UserPoolPolicyType;
|
|
2029
|
+
/**
|
|
2030
|
+
* When active, DeletionProtection prevents accidental deletion of your user pool. Before you can delete a user pool that you have protected against deletion, you must deactivate this feature. When you try to delete a protected user pool in a DeleteUserPool API request, Amazon Cognito returns an InvalidParameterException error. To delete a protected user pool, send a new DeleteUserPool request after you deactivate deletion protection in an UpdateUserPool API request.
|
|
2031
|
+
*/
|
|
2032
|
+
DeletionProtection?: DeletionProtectionType;
|
|
2029
2033
|
/**
|
|
2030
2034
|
* The Lambda trigger configuration information for the new user pool. In a push model, event sources (such as Amazon S3 and custom applications) need permission to invoke a function. So you must make an extra call to add permission for these event sources to invoke your Lambda function. For more information on using the Lambda API to add permission, see AddPermission . For adding permission using the CLI, see add-permission .
|
|
2031
2035
|
*/
|
|
@@ -2221,6 +2225,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
2221
2225
|
*/
|
|
2222
2226
|
AccessToken: TokenModelType;
|
|
2223
2227
|
}
|
|
2228
|
+
export type DeletionProtectionType = "ACTIVE"|"INACTIVE"|string;
|
|
2224
2229
|
export type DeliveryMediumListType = DeliveryMediumType[];
|
|
2225
2230
|
export type DeliveryMediumType = "SMS"|"EMAIL"|string;
|
|
2226
2231
|
export interface DescribeIdentityProviderRequest {
|
|
@@ -2235,7 +2240,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
2235
2240
|
}
|
|
2236
2241
|
export interface DescribeIdentityProviderResponse {
|
|
2237
2242
|
/**
|
|
2238
|
-
* The
|
|
2243
|
+
* The identity provider details.
|
|
2239
2244
|
*/
|
|
2240
2245
|
IdentityProvider: IdentityProviderType;
|
|
2241
2246
|
}
|
|
@@ -2422,7 +2427,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
2422
2427
|
*/
|
|
2423
2428
|
ReplyToEmailAddress?: EmailAddressType;
|
|
2424
2429
|
/**
|
|
2425
|
-
* Specifies whether Amazon Cognito uses its built-in functionality to send your users email messages, or uses your Amazon Simple Email Service email configuration. Specify one of the following values: COGNITO_DEFAULT When Amazon Cognito emails your users, it uses its built-in email functionality. When you use the default option, Amazon Cognito allows only a limited number of emails each day for your user pool. For typical production environments, the default email limit is less than the required delivery volume. To achieve a higher delivery volume, specify DEVELOPER to use your Amazon SES email configuration. To look up the email delivery limit for the default option, see Limits in
|
|
2430
|
+
* Specifies whether Amazon Cognito uses its built-in functionality to send your users email messages, or uses your Amazon Simple Email Service email configuration. Specify one of the following values: COGNITO_DEFAULT When Amazon Cognito emails your users, it uses its built-in email functionality. When you use the default option, Amazon Cognito allows only a limited number of emails each day for your user pool. For typical production environments, the default email limit is less than the required delivery volume. To achieve a higher delivery volume, specify DEVELOPER to use your Amazon SES email configuration. To look up the email delivery limit for the default option, see Limits in the Amazon Cognito Developer Guide. The default FROM address is no-reply@verificationemail.com. To customize the FROM address, provide the Amazon Resource Name (ARN) of an Amazon SES verified email address for the SourceArn parameter. DEVELOPER When Amazon Cognito emails your users, it uses your Amazon SES configuration. Amazon Cognito calls Amazon SES on your behalf to send email from your verified email address. When you use this option, the email delivery limits are the same limits that apply to your Amazon SES verified email address in your Amazon Web Services account. If you use this option, provide the ARN of an Amazon SES verified email address for the SourceArn parameter. Before Amazon Cognito can email your users, it requires additional permissions to call Amazon SES on your behalf. When you update your user pool with this option, Amazon Cognito creates a service-linked role, which is a type of role in your Amazon Web Services account. This role contains the permissions that allow you to access Amazon SES and send email messages from your email address. For more information about the service-linked role that Amazon Cognito creates, see Using Service-Linked Roles for Amazon Cognito in the Amazon Cognito Developer Guide.
|
|
2426
2431
|
*/
|
|
2427
2432
|
EmailSendingAccount?: EmailSendingAccountType;
|
|
2428
2433
|
/**
|
|
@@ -2603,7 +2608,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
2603
2608
|
}
|
|
2604
2609
|
export interface GetIdentityProviderByIdentifierResponse {
|
|
2605
2610
|
/**
|
|
2606
|
-
* The
|
|
2611
|
+
* The identity provider details.
|
|
2607
2612
|
*/
|
|
2608
2613
|
IdentityProvider: IdentityProviderType;
|
|
2609
2614
|
}
|
|
@@ -3946,7 +3951,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
3946
3951
|
}
|
|
3947
3952
|
export interface UpdateIdentityProviderResponse {
|
|
3948
3953
|
/**
|
|
3949
|
-
* The
|
|
3954
|
+
* The identity provider details.
|
|
3950
3955
|
*/
|
|
3951
3956
|
IdentityProvider: IdentityProviderType;
|
|
3952
3957
|
}
|
|
@@ -4008,15 +4013,15 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4008
4013
|
*/
|
|
4009
4014
|
ClientName?: ClientNameType;
|
|
4010
4015
|
/**
|
|
4011
|
-
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds.
|
|
4016
|
+
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your refresh tokens are valid for 30 days.
|
|
4012
4017
|
*/
|
|
4013
4018
|
RefreshTokenValidity?: RefreshTokenValidityType;
|
|
4014
4019
|
/**
|
|
4015
|
-
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
4020
|
+
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your access tokens are valid for one hour.
|
|
4016
4021
|
*/
|
|
4017
4022
|
AccessTokenValidity?: AccessTokenValidityType;
|
|
4018
4023
|
/**
|
|
4019
|
-
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
4024
|
+
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your ID tokens are valid for one hour.
|
|
4020
4025
|
*/
|
|
4021
4026
|
IdTokenValidity?: IdTokenValidityType;
|
|
4022
4027
|
/**
|
|
@@ -4032,7 +4037,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4032
4037
|
*/
|
|
4033
4038
|
WriteAttributes?: ClientPermissionListType;
|
|
4034
4039
|
/**
|
|
4035
|
-
* The authentication flows that
|
|
4040
|
+
* The authentication flows that you want your user pool client to support. For each app client in your user pool, you can sign in your users with any combination of one or more flows, including with a user name and Secure Remote Password (SRP), a user name and password, or a custom authentication process that you define with Lambda functions. If you don't specify a value for ExplicitAuthFlows, your user client supports ALLOW_REFRESH_TOKEN_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_CUSTOM_AUTH. Valid values include: ALLOW_ADMIN_USER_PASSWORD_AUTH: Enable admin based user password authentication flow ADMIN_USER_PASSWORD_AUTH. This setting replaces the ADMIN_NO_SRP_AUTH setting. With this authentication flow, your app passes a user name and password to Amazon Cognito in the request, instead of using the Secure Remote Password (SRP) protocol to securely transmit the password. ALLOW_CUSTOM_AUTH: Enable Lambda trigger based authentication. ALLOW_USER_PASSWORD_AUTH: Enable user password-based authentication. In this flow, Amazon Cognito receives the password in the request instead of using the SRP protocol to verify passwords. ALLOW_USER_SRP_AUTH: Enable SRP-based authentication. ALLOW_REFRESH_TOKEN_AUTH: Enable authflow to refresh tokens. In some environments, you will see the values ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, or USER_PASSWORD_AUTH. You can't assign these legacy ExplicitAuthFlows values to user pool clients at the same time as values that begin with ALLOW_, like ALLOW_USER_SRP_AUTH.
|
|
4036
4041
|
*/
|
|
4037
4042
|
ExplicitAuthFlows?: ExplicitAuthFlowsListType;
|
|
4038
4043
|
/**
|
|
@@ -4119,6 +4124,10 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4119
4124
|
* A container with the policies you want to update in a user pool.
|
|
4120
4125
|
*/
|
|
4121
4126
|
Policies?: UserPoolPolicyType;
|
|
4127
|
+
/**
|
|
4128
|
+
* When active, DeletionProtection prevents accidental deletion of your user pool. Before you can delete a user pool that you have protected against deletion, you must deactivate this feature. When you try to delete a protected user pool in a DeleteUserPool API request, Amazon Cognito returns an InvalidParameterException error. To delete a protected user pool, send a new DeleteUserPool request after you deactivate deletion protection in an UpdateUserPool API request.
|
|
4129
|
+
*/
|
|
4130
|
+
DeletionProtection?: DeletionProtectionType;
|
|
4122
4131
|
/**
|
|
4123
4132
|
* The Lambda configuration information from the request to update the user pool.
|
|
4124
4133
|
*/
|
|
@@ -4309,15 +4318,15 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4309
4318
|
*/
|
|
4310
4319
|
CreationDate?: DateType;
|
|
4311
4320
|
/**
|
|
4312
|
-
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds.
|
|
4321
|
+
* The refresh token time limit. After this limit expires, your user can't use their refresh token. To specify the time unit for RefreshTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set RefreshTokenValidity as 10 and TokenValidityUnits as days, your user can refresh their session and retrieve new access and ID tokens for 10 days. The default time unit for RefreshTokenValidity in an API request is days. You can't set RefreshTokenValidity to 0. If you do, Amazon Cognito overrides the value with the default value of 30 days. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your refresh tokens are valid for 30 days.
|
|
4313
4322
|
*/
|
|
4314
4323
|
RefreshTokenValidity?: RefreshTokenValidityType;
|
|
4315
4324
|
/**
|
|
4316
|
-
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
4325
|
+
* The access token time limit. After this limit expires, your user can't use their access token. To specify the time unit for AccessTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set AccessTokenValidity to 10 and TokenValidityUnits to hours, your user can authorize access with their access token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your access tokens are valid for one hour.
|
|
4317
4326
|
*/
|
|
4318
4327
|
AccessTokenValidity?: AccessTokenValidityType;
|
|
4319
4328
|
/**
|
|
4320
|
-
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds.
|
|
4329
|
+
* The ID token time limit. After this limit expires, your user can't use their ID token. To specify the time unit for IdTokenValidity as seconds, minutes, hours, or days, set a TokenValidityUnits value in your API request. For example, when you set IdTokenValidity as 10 and TokenValidityUnits as hours, your user can authenticate their session with their ID token for 10 hours. The default time unit for AccessTokenValidity in an API request is hours. Valid range is displayed below in seconds. If you don't specify otherwise in the configuration of your app client, your ID tokens are valid for one hour.
|
|
4321
4330
|
*/
|
|
4322
4331
|
IdTokenValidity?: IdTokenValidityType;
|
|
4323
4332
|
/**
|
|
@@ -4333,7 +4342,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4333
4342
|
*/
|
|
4334
4343
|
WriteAttributes?: ClientPermissionListType;
|
|
4335
4344
|
/**
|
|
4336
|
-
* The authentication flows that
|
|
4345
|
+
* The authentication flows that you want your user pool client to support. For each app client in your user pool, you can sign in your users with any combination of one or more flows, including with a user name and Secure Remote Password (SRP), a user name and password, or a custom authentication process that you define with Lambda functions. If you don't specify a value for ExplicitAuthFlows, your user client supports ALLOW_REFRESH_TOKEN_AUTH, ALLOW_USER_SRP_AUTH, and ALLOW_CUSTOM_AUTH. Valid values include: ALLOW_ADMIN_USER_PASSWORD_AUTH: Enable admin based user password authentication flow ADMIN_USER_PASSWORD_AUTH. This setting replaces the ADMIN_NO_SRP_AUTH setting. With this authentication flow, your app passes a user name and password to Amazon Cognito in the request, instead of using the Secure Remote Password (SRP) protocol to securely transmit the password. ALLOW_CUSTOM_AUTH: Enable Lambda trigger based authentication. ALLOW_USER_PASSWORD_AUTH: Enable user password-based authentication. In this flow, Amazon Cognito receives the password in the request instead of using the SRP protocol to verify passwords. ALLOW_USER_SRP_AUTH: Enable SRP-based authentication. ALLOW_REFRESH_TOKEN_AUTH: Enable authflow to refresh tokens. In some environments, you will see the values ADMIN_NO_SRP_AUTH, CUSTOM_AUTH_FLOW_ONLY, or USER_PASSWORD_AUTH. You can't assign these legacy ExplicitAuthFlows values to user pool clients at the same time as values that begin with ALLOW_, like ALLOW_USER_SRP_AUTH.
|
|
4337
4346
|
*/
|
|
4338
4347
|
ExplicitAuthFlows?: ExplicitAuthFlowsListType;
|
|
4339
4348
|
/**
|
|
@@ -4436,6 +4445,10 @@ declare namespace CognitoIdentityServiceProvider {
|
|
|
4436
4445
|
* The policies associated with the user pool.
|
|
4437
4446
|
*/
|
|
4438
4447
|
Policies?: UserPoolPolicyType;
|
|
4448
|
+
/**
|
|
4449
|
+
* When active, DeletionProtection prevents accidental deletion of your user pool. Before you can delete a user pool that you have protected against deletion, you must deactivate this feature. When you try to delete a protected user pool in a DeleteUserPool API request, Amazon Cognito returns an InvalidParameterException error. To delete a protected user pool, send a new DeleteUserPool request after you deactivate deletion protection in an UpdateUserPool API request.
|
|
4450
|
+
*/
|
|
4451
|
+
DeletionProtection?: DeletionProtectionType;
|
|
4439
4452
|
/**
|
|
4440
4453
|
* The Lambda triggers associated with the user pool.
|
|
4441
4454
|
*/
|
package/clients/datasync.d.ts
CHANGED
|
@@ -12,19 +12,19 @@ declare class DataSync extends Service {
|
|
|
12
12
|
constructor(options?: DataSync.Types.ClientConfiguration)
|
|
13
13
|
config: Config & DataSync.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* Stops an DataSync task execution that's in progress. The transfer of some files are abruptly interrupted. File contents that're transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution using the same task and allow it to finish, file content on the destination will be complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, DataSync successfully completes the transfer when you start the next task execution.
|
|
16
16
|
*/
|
|
17
17
|
cancelTaskExecution(params: DataSync.Types.CancelTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Stops an DataSync task execution that's in progress. The transfer of some files are abruptly interrupted. File contents that're transferred to the destination might be incomplete or inconsistent with the source files. However, if you start a new task execution using the same task and allow it to finish, file content on the destination will be complete and consistent. This applies to other unexpected failures that interrupt a task execution. In all of these cases, DataSync successfully completes the transfer when you start the next task execution.
|
|
20
20
|
*/
|
|
21
21
|
cancelTaskExecution(callback?: (err: AWSError, data: DataSync.Types.CancelTaskExecutionResponse) => void): Request<DataSync.Types.CancelTaskExecutionResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Activates an DataSync agent that you have deployed
|
|
23
|
+
* Activates an DataSync agent that you have deployed in your storage environment. The activation process associates your agent with your account. In the activation process, you specify information such as the Amazon Web Services Region that you want to activate the agent in. You activate the agent in the Amazon Web Services Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this Amazon Web Services Region. You can activate the agent in a VPC (virtual private cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by Amazon Web Services on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
|
|
24
24
|
*/
|
|
25
25
|
createAgent(params: DataSync.Types.CreateAgentRequest, callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
|
26
26
|
/**
|
|
27
|
-
* Activates an DataSync agent that you have deployed
|
|
27
|
+
* Activates an DataSync agent that you have deployed in your storage environment. The activation process associates your agent with your account. In the activation process, you specify information such as the Amazon Web Services Region that you want to activate the agent in. You activate the agent in the Amazon Web Services Region where your target locations (in Amazon S3 or Amazon EFS) reside. Your tasks are created in this Amazon Web Services Region. You can activate the agent in a VPC (virtual private cloud) or provide the agent access to a VPC endpoint so you can run tasks without going over the public internet. You can use an agent for more than one location. If a task uses multiple agents, all of them need to have status AVAILABLE for the task to run. If you use multiple agents for a source location, the status of all the agents must be AVAILABLE for the task to run. Agents are automatically updated by Amazon Web Services on a regular basis, using a mechanism that ensures minimal interruption to your tasks.
|
|
28
28
|
*/
|
|
29
29
|
createAgent(callback?: (err: AWSError, data: DataSync.Types.CreateAgentResponse) => void): Request<DataSync.Types.CreateAgentResponse, AWSError>;
|
|
30
30
|
/**
|
|
@@ -52,11 +52,11 @@ declare class DataSync extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
createLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOntapResponse) => void): Request<DataSync.Types.CreateLocationFsxOntapResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
55
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for OpenZFS. Request parameters related to SMB aren't supported with the CreateLocationFsxOpenZfs operation.
|
|
56
56
|
*/
|
|
57
57
|
createLocationFsxOpenZfs(params: DataSync.Types.CreateLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
59
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system that DataSync can access for a transfer. For more information, see Creating a location for FSx for OpenZFS. Request parameters related to SMB aren't supported with the CreateLocationFsxOpenZfs operation.
|
|
60
60
|
*/
|
|
61
61
|
createLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -92,11 +92,11 @@ declare class DataSync extends Service {
|
|
|
92
92
|
*/
|
|
93
93
|
createLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.CreateLocationObjectStorageResponse) => void): Request<DataSync.Types.CreateLocationObjectStorageResponse, AWSError>;
|
|
94
94
|
/**
|
|
95
|
-
* Creates an endpoint for an Amazon S3 bucket. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
95
|
+
* Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
96
96
|
*/
|
|
97
97
|
createLocationS3(params: DataSync.Types.CreateLocationS3Request, callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
|
|
98
98
|
/**
|
|
99
|
-
* Creates an endpoint for an Amazon S3 bucket. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
99
|
+
* Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer. For more information, see Create an Amazon S3 location in the DataSync User Guide.
|
|
100
100
|
*/
|
|
101
101
|
createLocationS3(callback?: (err: AWSError, data: DataSync.Types.CreateLocationS3Response) => void): Request<DataSync.Types.CreateLocationS3Response, AWSError>;
|
|
102
102
|
/**
|
|
@@ -156,27 +156,27 @@ declare class DataSync extends Service {
|
|
|
156
156
|
*/
|
|
157
157
|
describeLocationEfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationEfsResponse) => void): Request<DataSync.Types.DescribeLocationEfsResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Provides details about how an DataSync location for an Amazon FSx for Lustre file system is configured.
|
|
160
160
|
*/
|
|
161
161
|
describeLocationFsxLustre(params: DataSync.Types.DescribeLocationFsxLustreRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
*
|
|
163
|
+
* Provides details about how an DataSync location for an Amazon FSx for Lustre file system is configured.
|
|
164
164
|
*/
|
|
165
165
|
describeLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
|
167
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured. If your location uses SMB, the DescribeLocationFsxOntap operation doesn't actually return a Password.
|
|
168
168
|
*/
|
|
169
169
|
describeLocationFsxOntap(params: DataSync.Types.DescribeLocationFsxOntapRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured.
|
|
171
|
+
* Provides details about how an DataSync location for an Amazon FSx for NetApp ONTAP file system is configured. If your location uses SMB, the DescribeLocationFsxOntap operation doesn't actually return a Password.
|
|
172
172
|
*/
|
|
173
173
|
describeLocationFsxOntap(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOntapResponse) => void): Request<DataSync.Types.DescribeLocationFsxOntapResponse, AWSError>;
|
|
174
174
|
/**
|
|
175
|
-
*
|
|
175
|
+
* Provides details about how an DataSync location for an Amazon FSx for OpenZFS file system is configured. Response elements related to SMB aren't supported with the DescribeLocationFsxOpenZfs operation.
|
|
176
176
|
*/
|
|
177
177
|
describeLocationFsxOpenZfs(params: DataSync.Types.DescribeLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
178
178
|
/**
|
|
179
|
-
*
|
|
179
|
+
* Provides details about how an DataSync location for an Amazon FSx for OpenZFS file system is configured. Response elements related to SMB aren't supported with the DescribeLocationFsxOpenZfs operation.
|
|
180
180
|
*/
|
|
181
181
|
describeLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
182
182
|
/**
|
|
@@ -332,11 +332,11 @@ declare class DataSync extends Service {
|
|
|
332
332
|
*/
|
|
333
333
|
updateLocationNfs(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationNfsResponse) => void): Request<DataSync.Types.UpdateLocationNfsResponse, AWSError>;
|
|
334
334
|
/**
|
|
335
|
-
* Updates some
|
|
335
|
+
* Updates some parameters of an existing object storage location that DataSync accesses for a transfer. For information about creating a self-managed object storage location, see Creating a location for object storage.
|
|
336
336
|
*/
|
|
337
337
|
updateLocationObjectStorage(params: DataSync.Types.UpdateLocationObjectStorageRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
|
338
338
|
/**
|
|
339
|
-
* Updates some
|
|
339
|
+
* Updates some parameters of an existing object storage location that DataSync accesses for a transfer. For information about creating a self-managed object storage location, see Creating a location for object storage.
|
|
340
340
|
*/
|
|
341
341
|
updateLocationObjectStorage(callback?: (err: AWSError, data: DataSync.Types.UpdateLocationObjectStorageResponse) => void): Request<DataSync.Types.UpdateLocationObjectStorageResponse, AWSError>;
|
|
342
342
|
/**
|
|
@@ -388,7 +388,7 @@ declare namespace DataSync {
|
|
|
388
388
|
export type BytesPerSecond = number;
|
|
389
389
|
export interface CancelTaskExecutionRequest {
|
|
390
390
|
/**
|
|
391
|
-
* The Amazon Resource Name (ARN) of the task execution to
|
|
391
|
+
* The Amazon Resource Name (ARN) of the task execution to stop.
|
|
392
392
|
*/
|
|
393
393
|
TaskExecutionArn: TaskExecutionArn;
|
|
394
394
|
}
|
|
@@ -700,6 +700,10 @@ declare namespace DataSync {
|
|
|
700
700
|
* Specifies the key-value pair that represents a tag that you want to add to the resource. Tags can help you manage, filter, and search for your resources. We recommend creating a name tag for your location.
|
|
701
701
|
*/
|
|
702
702
|
Tags?: InputTagList;
|
|
703
|
+
/**
|
|
704
|
+
* Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem file (for example, file:///home/user/.ssh/storage_sys_certificate.pem). The certificate can be up to 32768 bytes (before Base64 encoding). To use this parameter, configure ServerProtocol to HTTPS.
|
|
705
|
+
*/
|
|
706
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
703
707
|
}
|
|
704
708
|
export interface CreateLocationObjectStorageResponse {
|
|
705
709
|
/**
|
|
@@ -1127,7 +1131,7 @@ declare namespace DataSync {
|
|
|
1127
1131
|
*/
|
|
1128
1132
|
LocationUri?: LocationUri;
|
|
1129
1133
|
/**
|
|
1130
|
-
* The access key (for example, a user name) required to authenticate with the object storage
|
|
1134
|
+
* The access key (for example, a user name) required to authenticate with the object storage system.
|
|
1131
1135
|
*/
|
|
1132
1136
|
AccessKey?: ObjectStorageAccessKey;
|
|
1133
1137
|
/**
|
|
@@ -1135,7 +1139,7 @@ declare namespace DataSync {
|
|
|
1135
1139
|
*/
|
|
1136
1140
|
ServerPort?: ObjectStorageServerPort;
|
|
1137
1141
|
/**
|
|
1138
|
-
* The protocol that your object storage
|
|
1142
|
+
* The protocol that your object storage system uses to communicate.
|
|
1139
1143
|
*/
|
|
1140
1144
|
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1141
1145
|
/**
|
|
@@ -1146,6 +1150,10 @@ declare namespace DataSync {
|
|
|
1146
1150
|
* The time that the location was created.
|
|
1147
1151
|
*/
|
|
1148
1152
|
CreationTime?: Time;
|
|
1153
|
+
/**
|
|
1154
|
+
* The self-signed certificate that DataSync uses to securely authenticate with your object storage system.
|
|
1155
|
+
*/
|
|
1156
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
1149
1157
|
}
|
|
1150
1158
|
export interface DescribeLocationS3Request {
|
|
1151
1159
|
/**
|
|
@@ -1229,11 +1237,11 @@ declare namespace DataSync {
|
|
|
1229
1237
|
Status?: TaskExecutionStatus;
|
|
1230
1238
|
Options?: Options;
|
|
1231
1239
|
/**
|
|
1232
|
-
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1240
|
+
* A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1233
1241
|
*/
|
|
1234
1242
|
Excludes?: FilterList;
|
|
1235
1243
|
/**
|
|
1236
|
-
* A list of filter rules that determines which files to include when running a task. The list should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1244
|
+
* A list of filter rules that determines which files to include when running a task. The list should contain a single filter string that consists of the patterns to include. The patterns are delimited by "|" (that is, a pipe), for example: "/folder1|/folder2"
|
|
1237
1245
|
*/
|
|
1238
1246
|
Includes?: FilterList;
|
|
1239
1247
|
/**
|
|
@@ -1264,6 +1272,10 @@ declare namespace DataSync {
|
|
|
1264
1272
|
* The result of the task execution.
|
|
1265
1273
|
*/
|
|
1266
1274
|
Result?: TaskExecutionResultDetail;
|
|
1275
|
+
/**
|
|
1276
|
+
* The physical number of bytes transferred over the network after compression was applied. In most cases, this number is less than BytesTransferred.
|
|
1277
|
+
*/
|
|
1278
|
+
BytesCompressed?: long;
|
|
1267
1279
|
}
|
|
1268
1280
|
export interface DescribeTaskRequest {
|
|
1269
1281
|
/**
|
|
@@ -1594,6 +1606,7 @@ declare namespace DataSync {
|
|
|
1594
1606
|
export type NfsVersion = "AUTOMATIC"|"NFS3"|"NFS4_0"|"NFS4_1"|string;
|
|
1595
1607
|
export type ObjectStorageAccessKey = string;
|
|
1596
1608
|
export type ObjectStorageBucketName = string;
|
|
1609
|
+
export type ObjectStorageCertificate = Buffer|Uint8Array|Blob|string;
|
|
1597
1610
|
export type ObjectStorageSecretKey = string;
|
|
1598
1611
|
export type ObjectStorageServerPort = number;
|
|
1599
1612
|
export type ObjectStorageServerProtocol = "HTTPS"|"HTTP"|string;
|
|
@@ -1965,33 +1978,37 @@ declare namespace DataSync {
|
|
|
1965
1978
|
}
|
|
1966
1979
|
export interface UpdateLocationObjectStorageRequest {
|
|
1967
1980
|
/**
|
|
1968
|
-
*
|
|
1981
|
+
* Specifies the ARN of the object storage system location that you're updating.
|
|
1969
1982
|
*/
|
|
1970
1983
|
LocationArn: LocationArn;
|
|
1971
1984
|
/**
|
|
1972
|
-
*
|
|
1985
|
+
* Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
|
|
1973
1986
|
*/
|
|
1974
1987
|
ServerPort?: ObjectStorageServerPort;
|
|
1975
1988
|
/**
|
|
1976
|
-
*
|
|
1989
|
+
* Specifies the protocol that your object storage server uses to communicate.
|
|
1977
1990
|
*/
|
|
1978
1991
|
ServerProtocol?: ObjectStorageServerProtocol;
|
|
1979
1992
|
/**
|
|
1980
|
-
*
|
|
1993
|
+
* Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
|
|
1981
1994
|
*/
|
|
1982
1995
|
Subdirectory?: S3Subdirectory;
|
|
1983
1996
|
/**
|
|
1984
|
-
*
|
|
1997
|
+
* Specifies the access key (for example, a user name) if credentials are required to authenticate with the object storage server.
|
|
1985
1998
|
*/
|
|
1986
1999
|
AccessKey?: ObjectStorageAccessKey;
|
|
1987
2000
|
/**
|
|
1988
|
-
*
|
|
2001
|
+
* Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
|
|
1989
2002
|
*/
|
|
1990
2003
|
SecretKey?: ObjectStorageSecretKey;
|
|
1991
2004
|
/**
|
|
1992
|
-
*
|
|
2005
|
+
* Specifies the Amazon Resource Names (ARNs) of the DataSync agents that can securely connect with your location.
|
|
1993
2006
|
*/
|
|
1994
2007
|
AgentArns?: AgentArnList;
|
|
2008
|
+
/**
|
|
2009
|
+
* Specifies a certificate to authenticate with an object storage system that uses a private or self-signed certificate authority (CA). You must specify a Base64-encoded .pem file (for example, file:///home/user/.ssh/storage_sys_certificate.pem). The certificate can be up to 32768 bytes (before Base64 encoding). To use this parameter, configure ServerProtocol to HTTPS. Updating the certificate doesn't interfere with tasks that you have in progress.
|
|
2010
|
+
*/
|
|
2011
|
+
ServerCertificate?: ObjectStorageCertificate;
|
|
1995
2012
|
}
|
|
1996
2013
|
export interface UpdateLocationObjectStorageResponse {
|
|
1997
2014
|
}
|