aws-sdk 2.1446.0 → 2.1448.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 +17 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +115 -87
- package/apis/auditmanager-2017-07-25.min.json +238 -63
- package/apis/cleanrooms-2022-02-17.min.json +70 -31
- package/apis/cognito-idp-2016-04-18.examples.json +849 -0
- package/apis/cognito-idp-2016-04-18.min.json +64 -24
- package/apis/datasync-2018-11-09.min.json +97 -14
- package/apis/metadata.json +7 -0
- package/apis/neptunedata-2023-08-01.examples.json +5 -0
- package/apis/neptunedata-2023-08-01.min.json +1923 -0
- package/apis/neptunedata-2023-08-01.paginators.json +4 -0
- package/apis/omics-2022-11-28.min.json +23 -21
- package/apis/pca-connector-ad-2018-05-10.examples.json +5 -0
- package/apis/pca-connector-ad-2018-05-10.min.json +1465 -0
- package/apis/pca-connector-ad-2018-05-10.paginators.json +34 -0
- package/apis/sagemaker-2017-07-24.min.json +739 -728
- package/apis/sesv2-2019-09-27.examples.json +244 -0
- package/apis/sesv2-2019-09-27.min.json +491 -153
- package/apis/sesv2-2019-09-27.paginators.json +5 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/appflow.d.ts +30 -0
- package/clients/apprunner.d.ts +5 -5
- package/clients/cleanrooms.d.ts +41 -5
- package/clients/cognitoidentityserviceprovider.d.ts +5 -5
- package/clients/datasync.d.ts +144 -21
- package/clients/fsx.d.ts +28 -28
- package/clients/neptunedata.d.ts +1976 -0
- package/clients/neptunedata.js +18 -0
- package/clients/networkfirewall.d.ts +9 -9
- package/clients/omics.d.ts +13 -4
- package/clients/pcaconnectorad.d.ts +1606 -0
- package/clients/pcaconnectorad.js +18 -0
- package/clients/sagemaker.d.ts +21 -1
- package/clients/sesv2.d.ts +374 -3
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +87 -13
- package/dist/aws-sdk.js +74 -27
- package/dist/aws-sdk.min.js +85 -85
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -50,6 +50,11 @@
|
|
50
50
|
"output_token": "NextToken",
|
51
51
|
"limit_key": "PageSize"
|
52
52
|
},
|
53
|
+
"ListExportJobs": {
|
54
|
+
"input_token": "NextToken",
|
55
|
+
"output_token": "NextToken",
|
56
|
+
"limit_key": "PageSize"
|
57
|
+
},
|
53
58
|
"ListImportJobs": {
|
54
59
|
"input_token": "NextToken",
|
55
60
|
"output_token": "NextToken",
|
package/clients/all.d.ts
CHANGED
@@ -352,3 +352,5 @@ export import AppFabric = require('./appfabric');
|
|
352
352
|
export import MedicalImaging = require('./medicalimaging');
|
353
353
|
export import EntityResolution = require('./entityresolution');
|
354
354
|
export import ManagedBlockchainQuery = require('./managedblockchainquery');
|
355
|
+
export import Neptunedata = require('./neptunedata');
|
356
|
+
export import PcaConnectorAd = require('./pcaconnectorad');
|
package/clients/all.js
CHANGED
@@ -353,5 +353,7 @@ module.exports = {
|
|
353
353
|
AppFabric: require('./appfabric'),
|
354
354
|
MedicalImaging: require('./medicalimaging'),
|
355
355
|
EntityResolution: require('./entityresolution'),
|
356
|
-
ManagedBlockchainQuery: require('./managedblockchainquery')
|
356
|
+
ManagedBlockchainQuery: require('./managedblockchainquery'),
|
357
|
+
Neptunedata: require('./neptunedata'),
|
358
|
+
PcaConnectorAd: require('./pcaconnectorad')
|
357
359
|
};
|
package/clients/appflow.d.ts
CHANGED
@@ -1710,6 +1710,14 @@ declare namespace Appflow {
|
|
1710
1710
|
* The number of records processed in the flow run.
|
1711
1711
|
*/
|
1712
1712
|
recordsProcessed?: Long;
|
1713
|
+
/**
|
1714
|
+
* The number of processes that Amazon AppFlow ran at the same time when it retrieved your data.
|
1715
|
+
*/
|
1716
|
+
numParallelProcesses?: Long;
|
1717
|
+
/**
|
1718
|
+
* The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application.
|
1719
|
+
*/
|
1720
|
+
maxPageSize?: Long;
|
1713
1721
|
}
|
1714
1722
|
export type ExecutionStatus = "InProgress"|"Successful"|"Error"|"CancelStarted"|"Canceled"|string;
|
1715
1723
|
export type FieldType = string;
|
@@ -2579,13 +2587,35 @@ declare namespace Appflow {
|
|
2579
2587
|
errorHandlingConfig?: ErrorHandlingConfig;
|
2580
2588
|
writeOperationType?: WriteOperationType;
|
2581
2589
|
}
|
2590
|
+
export type SAPODataMaxPageSize = number;
|
2591
|
+
export type SAPODataMaxParallelism = number;
|
2582
2592
|
export interface SAPODataMetadata {
|
2583
2593
|
}
|
2594
|
+
export interface SAPODataPaginationConfig {
|
2595
|
+
/**
|
2596
|
+
* The maximum number of records that Amazon AppFlow receives in each page of the response from your SAP application. For transfers of OData records, the maximum page size is 3,000. For transfers of data that comes from an ODP provider, the maximum page size is 10,000.
|
2597
|
+
*/
|
2598
|
+
maxPageSize: SAPODataMaxPageSize;
|
2599
|
+
}
|
2600
|
+
export interface SAPODataParallelismConfig {
|
2601
|
+
/**
|
2602
|
+
* The maximum number of processes that Amazon AppFlow runs at the same time when it retrieves your data from your SAP application.
|
2603
|
+
*/
|
2604
|
+
maxParallelism: SAPODataMaxParallelism;
|
2605
|
+
}
|
2584
2606
|
export interface SAPODataSourceProperties {
|
2585
2607
|
/**
|
2586
2608
|
* The object path specified in the SAPOData flow source.
|
2587
2609
|
*/
|
2588
2610
|
objectPath?: Object;
|
2611
|
+
/**
|
2612
|
+
* Sets the number of concurrent processes that transfers OData records from your SAP instance.
|
2613
|
+
*/
|
2614
|
+
parallelismConfig?: SAPODataParallelismConfig;
|
2615
|
+
/**
|
2616
|
+
* Sets the page size for each concurrent process that transfers OData records from your SAP instance.
|
2617
|
+
*/
|
2618
|
+
paginationConfig?: SAPODataPaginationConfig;
|
2589
2619
|
}
|
2590
2620
|
export type SalesforceConnectorOperator = "PROJECTION"|"LESS_THAN"|"CONTAINS"|"GREATER_THAN"|"BETWEEN"|"LESS_THAN_OR_EQUAL_TO"|"GREATER_THAN_OR_EQUAL_TO"|"EQUAL_TO"|"NOT_EQUAL_TO"|"ADDITION"|"MULTIPLICATION"|"DIVISION"|"SUBTRACTION"|"MASK_ALL"|"MASK_FIRST_N"|"MASK_LAST_N"|"VALIDATE_NON_NULL"|"VALIDATE_NON_ZERO"|"VALIDATE_NON_NEGATIVE"|"VALIDATE_NUMERIC"|"NO_OP"|string;
|
2591
2621
|
export interface SalesforceConnectorProfileCredentials {
|
package/clients/apprunner.d.ts
CHANGED
@@ -28,11 +28,11 @@ declare class AppRunner extends Service {
|
|
28
28
|
*/
|
29
29
|
createAutoScalingConfiguration(callback?: (err: AWSError, data: AppRunner.Types.CreateAutoScalingConfigurationResponse) => void): Request<AppRunner.Types.CreateAutoScalingConfigurationResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories.
|
31
|
+
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
|
32
32
|
*/
|
33
33
|
createConnection(params: AppRunner.Types.CreateConnectionRequest, callback?: (err: AWSError, data: AppRunner.Types.CreateConnectionResponse) => void): Request<AppRunner.Types.CreateConnectionResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub repositories.
|
35
|
+
* Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from certain third-party providers. You can share a connection across multiple services. A connection resource is needed to access GitHub and Bitbucket repositories. Both require a user interface approval process through the App Runner console before you can use the connection.
|
36
36
|
*/
|
37
37
|
createConnection(callback?: (err: AWSError, data: AppRunner.Types.CreateConnectionResponse) => void): Request<AppRunner.Types.CreateConnectionResponse, AWSError>;
|
38
38
|
/**
|
@@ -1326,7 +1326,7 @@ declare namespace AppRunner {
|
|
1326
1326
|
*/
|
1327
1327
|
OperationId?: UUID;
|
1328
1328
|
}
|
1329
|
-
export type ProviderType = "GITHUB"|string;
|
1329
|
+
export type ProviderType = "GITHUB"|"BITBUCKET"|string;
|
1330
1330
|
export interface ResumeServiceRequest {
|
1331
1331
|
/**
|
1332
1332
|
* The Amazon Resource Name (ARN) of the App Runner service that you want to resume.
|
@@ -1381,7 +1381,7 @@ declare namespace AppRunner {
|
|
1381
1381
|
*/
|
1382
1382
|
DeletedAt?: Timestamp;
|
1383
1383
|
/**
|
1384
|
-
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and
|
1384
|
+
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService. DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
|
1385
1385
|
*/
|
1386
1386
|
Status: ServiceStatus;
|
1387
1387
|
/**
|
@@ -1453,7 +1453,7 @@ declare namespace AppRunner {
|
|
1453
1453
|
*/
|
1454
1454
|
UpdatedAt?: Timestamp;
|
1455
1455
|
/**
|
1456
|
-
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create.
|
1456
|
+
* The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService. DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
|
1457
1457
|
*/
|
1458
1458
|
Status?: ServiceStatus;
|
1459
1459
|
}
|
package/clients/cleanrooms.d.ts
CHANGED
@@ -292,11 +292,11 @@ declare class CleanRooms extends Service {
|
|
292
292
|
*/
|
293
293
|
listTagsForResource(callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
|
294
294
|
/**
|
295
|
-
* Creates a protected query that is started by Clean Rooms
|
295
|
+
* Creates a protected query that is started by Clean Rooms.
|
296
296
|
*/
|
297
297
|
startProtectedQuery(params: CleanRooms.Types.StartProtectedQueryInput, callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
|
298
298
|
/**
|
299
|
-
* Creates a protected query that is started by Clean Rooms
|
299
|
+
* Creates a protected query that is started by Clean Rooms.
|
300
300
|
*/
|
301
301
|
startProtectedQuery(callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
|
302
302
|
/**
|
@@ -1304,6 +1304,10 @@ declare namespace CleanRooms {
|
|
1304
1304
|
* An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
1305
1305
|
*/
|
1306
1306
|
tags?: TagMap;
|
1307
|
+
/**
|
1308
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
1309
|
+
*/
|
1310
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1307
1311
|
}
|
1308
1312
|
export interface CreateMembershipOutput {
|
1309
1313
|
/**
|
@@ -1907,9 +1911,26 @@ declare namespace CleanRooms {
|
|
1907
1911
|
* An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
1908
1912
|
*/
|
1909
1913
|
queryLogStatus: MembershipQueryLogStatus;
|
1914
|
+
/**
|
1915
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
1916
|
+
*/
|
1917
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1910
1918
|
}
|
1911
1919
|
export type MembershipArn = string;
|
1912
1920
|
export type MembershipIdentifier = string;
|
1921
|
+
export interface MembershipProtectedQueryOutputConfiguration {
|
1922
|
+
s3?: ProtectedQueryS3OutputConfiguration;
|
1923
|
+
}
|
1924
|
+
export interface MembershipProtectedQueryResultConfiguration {
|
1925
|
+
/**
|
1926
|
+
* Configuration for protected query results.
|
1927
|
+
*/
|
1928
|
+
outputConfiguration: MembershipProtectedQueryOutputConfiguration;
|
1929
|
+
/**
|
1930
|
+
* The unique ARN for an IAM role that is used by Clean Rooms to write protected query results to the result location, given by the member who can receive results.
|
1931
|
+
*/
|
1932
|
+
roleArn?: RoleArn;
|
1933
|
+
}
|
1913
1934
|
export type MembershipQueryLogStatus = "ENABLED"|"DISABLED"|string;
|
1914
1935
|
export type MembershipStatus = "ACTIVE"|"REMOVED"|"COLLABORATION_DELETED"|string;
|
1915
1936
|
export interface MembershipSummary {
|
@@ -1984,7 +2005,7 @@ declare namespace CleanRooms {
|
|
1984
2005
|
/**
|
1985
2006
|
* The protected query SQL parameters.
|
1986
2007
|
*/
|
1987
|
-
sqlParameters
|
2008
|
+
sqlParameters?: ProtectedQuerySQLParameters;
|
1988
2009
|
/**
|
1989
2010
|
* The status of the query.
|
1990
2011
|
*/
|
@@ -1992,7 +2013,7 @@ declare namespace CleanRooms {
|
|
1992
2013
|
/**
|
1993
2014
|
* Contains any details needed to write the query results.
|
1994
2015
|
*/
|
1995
|
-
resultConfiguration
|
2016
|
+
resultConfiguration?: ProtectedQueryResultConfiguration;
|
1996
2017
|
/**
|
1997
2018
|
* Statistics about protected query execution.
|
1998
2019
|
*/
|
@@ -2017,11 +2038,16 @@ declare namespace CleanRooms {
|
|
2017
2038
|
code: String;
|
2018
2039
|
}
|
2019
2040
|
export type ProtectedQueryIdentifier = string;
|
2041
|
+
export type ProtectedQueryMemberOutputList = ProtectedQuerySingleMemberOutput[];
|
2020
2042
|
export interface ProtectedQueryOutput {
|
2021
2043
|
/**
|
2022
2044
|
* If present, the output for a protected query with an `S3` output type.
|
2023
2045
|
*/
|
2024
2046
|
s3?: ProtectedQueryS3Output;
|
2047
|
+
/**
|
2048
|
+
* The list of member Amazon Web Services account(s) that received the results of the query.
|
2049
|
+
*/
|
2050
|
+
memberList?: ProtectedQueryMemberOutputList;
|
2025
2051
|
}
|
2026
2052
|
export interface ProtectedQueryOutputConfiguration {
|
2027
2053
|
/**
|
@@ -2077,6 +2103,12 @@ declare namespace CleanRooms {
|
|
2077
2103
|
parameters?: ParameterMap;
|
2078
2104
|
}
|
2079
2105
|
export type ProtectedQuerySQLParametersQueryStringString = string;
|
2106
|
+
export interface ProtectedQuerySingleMemberOutput {
|
2107
|
+
/**
|
2108
|
+
* The Amazon Web Services account ID of the member in the collaboration who can receive results for the query.
|
2109
|
+
*/
|
2110
|
+
accountId: AccountId;
|
2111
|
+
}
|
2080
2112
|
export interface ProtectedQueryStatistics {
|
2081
2113
|
/**
|
2082
2114
|
* The duration of the Protected Query, from creation until query completion.
|
@@ -2222,7 +2254,7 @@ declare namespace CleanRooms {
|
|
2222
2254
|
/**
|
2223
2255
|
* The details needed to write the query results.
|
2224
2256
|
*/
|
2225
|
-
resultConfiguration
|
2257
|
+
resultConfiguration?: ProtectedQueryResultConfiguration;
|
2226
2258
|
}
|
2227
2259
|
export interface StartProtectedQueryOutput {
|
2228
2260
|
/**
|
@@ -2384,6 +2416,10 @@ declare namespace CleanRooms {
|
|
2384
2416
|
* An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
2385
2417
|
*/
|
2386
2418
|
queryLogStatus?: MembershipQueryLogStatus;
|
2419
|
+
/**
|
2420
|
+
* The default protected query result configuration as specified by the member who can receive results.
|
2421
|
+
*/
|
2422
|
+
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
2387
2423
|
}
|
2388
2424
|
export interface UpdateMembershipOutput {
|
2389
2425
|
membership: Membership;
|
@@ -212,11 +212,11 @@ declare class CognitoIdentityServiceProvider extends Service {
|
|
212
212
|
*/
|
213
213
|
adminUpdateDeviceStatus(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminUpdateDeviceStatusResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminUpdateDeviceStatusResponse, AWSError>;
|
214
214
|
/**
|
215
|
-
* This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers require you to register an origination phone number before you can send SMS messages to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Amazon Cognito uses the registered number automatically. Otherwise, Amazon Cognito users who must receive SMS messages might not be able to sign up, activate their accounts, or sign in. If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Service, Amazon Simple Notification Service might place your account in the SMS sandbox. In sandbox mode , you can send messages only to verified phone numbers. After you test your app while in the sandbox environment, you can move out of the sandbox and into production. For more information, see SMS message settings for Amazon Cognito user pools in the Amazon Cognito Developer Guide. Updates the specified user's attributes, including developer attributes, as an administrator. Works on any user. For custom attributes, you must prepend the custom: prefix to the attribute name. In addition to updating user attributes, this API can also be used to mark phone and email as verified. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more Signing Amazon Web Services API Requests Using the Amazon Cognito user pools API and user pool endpoints
|
215
|
+
* This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers require you to register an origination phone number before you can send SMS messages to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Amazon Cognito uses the registered number automatically. Otherwise, Amazon Cognito users who must receive SMS messages might not be able to sign up, activate their accounts, or sign in. If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Service, Amazon Simple Notification Service might place your account in the SMS sandbox. In sandbox mode , you can send messages only to verified phone numbers. After you test your app while in the sandbox environment, you can move out of the sandbox and into production. For more information, see SMS message settings for Amazon Cognito user pools in the Amazon Cognito Developer Guide. Updates the specified user's attributes, including developer attributes, as an administrator. Works on any user. To delete an attribute from your user, submit the attribute in your API request with a blank value. For custom attributes, you must prepend the custom: prefix to the attribute name. In addition to updating user attributes, this API can also be used to mark phone and email as verified. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more Signing Amazon Web Services API Requests Using the Amazon Cognito user pools API and user pool endpoints
|
216
216
|
*/
|
217
217
|
adminUpdateUserAttributes(params: CognitoIdentityServiceProvider.Types.AdminUpdateUserAttributesRequest, callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminUpdateUserAttributesResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminUpdateUserAttributesResponse, AWSError>;
|
218
218
|
/**
|
219
|
-
* This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers require you to register an origination phone number before you can send SMS messages to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Amazon Cognito uses the registered number automatically. Otherwise, Amazon Cognito users who must receive SMS messages might not be able to sign up, activate their accounts, or sign in. If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Service, Amazon Simple Notification Service might place your account in the SMS sandbox. In sandbox mode , you can send messages only to verified phone numbers. After you test your app while in the sandbox environment, you can move out of the sandbox and into production. For more information, see SMS message settings for Amazon Cognito user pools in the Amazon Cognito Developer Guide. Updates the specified user's attributes, including developer attributes, as an administrator. Works on any user. For custom attributes, you must prepend the custom: prefix to the attribute name. In addition to updating user attributes, this API can also be used to mark phone and email as verified. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more Signing Amazon Web Services API Requests Using the Amazon Cognito user pools API and user pool endpoints
|
219
|
+
* This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers require you to register an origination phone number before you can send SMS messages to US phone numbers. If you use SMS text messages in Amazon Cognito, you must register a phone number with Amazon Pinpoint. Amazon Cognito uses the registered number automatically. Otherwise, Amazon Cognito users who must receive SMS messages might not be able to sign up, activate their accounts, or sign in. If you have never used SMS text messages with Amazon Cognito or any other Amazon Web Service, Amazon Simple Notification Service might place your account in the SMS sandbox. In sandbox mode , you can send messages only to verified phone numbers. After you test your app while in the sandbox environment, you can move out of the sandbox and into production. For more information, see SMS message settings for Amazon Cognito user pools in the Amazon Cognito Developer Guide. Updates the specified user's attributes, including developer attributes, as an administrator. Works on any user. To delete an attribute from your user, submit the attribute in your API request with a blank value. For custom attributes, you must prepend the custom: prefix to the attribute name. In addition to updating user attributes, this API can also be used to mark phone and email as verified. Amazon Cognito evaluates Identity and Access Management (IAM) policies in requests for this API operation. For this operation, you must use IAM credentials to authorize requests, and you must grant yourself the corresponding IAM permission in a policy. Learn more Signing Amazon Web Services API Requests Using the Amazon Cognito user pools API and user pool endpoints
|
220
220
|
*/
|
221
221
|
adminUpdateUserAttributes(callback?: (err: AWSError, data: CognitoIdentityServiceProvider.Types.AdminUpdateUserAttributesResponse) => void): Request<CognitoIdentityServiceProvider.Types.AdminUpdateUserAttributesResponse, AWSError>;
|
222
222
|
/**
|
@@ -1663,7 +1663,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
1663
1663
|
export type ClientSecretType = string;
|
1664
1664
|
export interface CloudWatchLogsConfigurationType {
|
1665
1665
|
/**
|
1666
|
-
* The Amazon Resource Name (arn) of a CloudWatch Logs log group where your user pool sends logs. The log group must not be encrypted with Key Management Service and must be in the same Amazon Web Services account as your user pool.
|
1666
|
+
* The Amazon Resource Name (arn) of a CloudWatch Logs log group where your user pool sends logs. The log group must not be encrypted with Key Management Service and must be in the same Amazon Web Services account as your user pool. To send logs to log groups with a resource policy of a size greater than 5120 characters, configure a log group with a path that starts with /aws/vendedlogs. For more information, see Enabling logging from certain Amazon Web Services services.
|
1667
1667
|
*/
|
1668
1668
|
LogGroupArn?: ArnType;
|
1669
1669
|
}
|
@@ -1855,7 +1855,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
1855
1855
|
/**
|
1856
1856
|
* The IdP name.
|
1857
1857
|
*/
|
1858
|
-
ProviderName:
|
1858
|
+
ProviderName: ProviderNameTypeV2;
|
1859
1859
|
/**
|
1860
1860
|
* The IdP type.
|
1861
1861
|
*/
|
@@ -3344,7 +3344,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
3344
3344
|
}
|
3345
3345
|
export type ProviderDetailsType = {[key: string]: StringType};
|
3346
3346
|
export type ProviderNameType = string;
|
3347
|
-
export type
|
3347
|
+
export type ProviderNameTypeV2 = string;
|
3348
3348
|
export interface ProviderUserIdentifierType {
|
3349
3349
|
/**
|
3350
3350
|
* The name of the provider, such as Facebook, Google, or Login with Amazon.
|
package/clients/datasync.d.ts
CHANGED
@@ -124,11 +124,11 @@ declare class DataSync extends Service {
|
|
124
124
|
*/
|
125
125
|
createLocationSmb(callback?: (err: AWSError, data: DataSync.Types.CreateLocationSmbResponse) => void): Request<DataSync.Types.CreateLocationSmbResponse, AWSError>;
|
126
126
|
/**
|
127
|
-
* Configures a task, which defines where and how DataSync
|
127
|
+
* Configures a transfer task, which defines where and how DataSync moves your data. A task includes a source location, destination location, and the options for how and when you want to transfer your data (such as bandwidth limits, scheduling, among other options). If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
128
128
|
*/
|
129
129
|
createTask(params: DataSync.Types.CreateTaskRequest, callback?: (err: AWSError, data: DataSync.Types.CreateTaskResponse) => void): Request<DataSync.Types.CreateTaskResponse, AWSError>;
|
130
130
|
/**
|
131
|
-
* Configures a task, which defines where and how DataSync
|
131
|
+
* Configures a transfer task, which defines where and how DataSync moves your data. A task includes a source location, destination location, and the options for how and when you want to transfer your data (such as bandwidth limits, scheduling, among other options). If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
132
132
|
*/
|
133
133
|
createTask(callback?: (err: AWSError, data: DataSync.Types.CreateTaskResponse) => void): Request<DataSync.Types.CreateTaskResponse, AWSError>;
|
134
134
|
/**
|
@@ -148,11 +148,11 @@ declare class DataSync extends Service {
|
|
148
148
|
*/
|
149
149
|
deleteLocation(callback?: (err: AWSError, data: DataSync.Types.DeleteLocationResponse) => void): Request<DataSync.Types.DeleteLocationResponse, AWSError>;
|
150
150
|
/**
|
151
|
-
* Deletes an DataSync task.
|
151
|
+
* Deletes an DataSync transfer task.
|
152
152
|
*/
|
153
153
|
deleteTask(params: DataSync.Types.DeleteTaskRequest, callback?: (err: AWSError, data: DataSync.Types.DeleteTaskResponse) => void): Request<DataSync.Types.DeleteTaskResponse, AWSError>;
|
154
154
|
/**
|
155
|
-
* Deletes an DataSync task.
|
155
|
+
* Deletes an DataSync transfer task.
|
156
156
|
*/
|
157
157
|
deleteTask(callback?: (err: AWSError, data: DataSync.Types.DeleteTaskResponse) => void): Request<DataSync.Types.DeleteTaskResponse, AWSError>;
|
158
158
|
/**
|
@@ -292,11 +292,11 @@ declare class DataSync extends Service {
|
|
292
292
|
*/
|
293
293
|
describeTask(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskResponse) => void): Request<DataSync.Types.DescribeTaskResponse, AWSError>;
|
294
294
|
/**
|
295
|
-
* Provides information about an DataSync transfer
|
295
|
+
* Provides information about an execution of your DataSync task. You can use this operation to help monitor the progress of an ongoing transfer or check the results of the transfer.
|
296
296
|
*/
|
297
297
|
describeTaskExecution(params: DataSync.Types.DescribeTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeTaskExecutionResponse) => void): Request<DataSync.Types.DescribeTaskExecutionResponse, AWSError>;
|
298
298
|
/**
|
299
|
-
* Provides information about an DataSync transfer
|
299
|
+
* Provides information about an execution of your DataSync task. You can use this operation to help monitor the progress of an ongoing transfer or check the results of the transfer.
|
300
300
|
*/
|
301
301
|
describeTaskExecution(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskExecutionResponse) => void): Request<DataSync.Types.DescribeTaskExecutionResponse, AWSError>;
|
302
302
|
/**
|
@@ -380,11 +380,11 @@ declare class DataSync extends Service {
|
|
380
380
|
*/
|
381
381
|
startDiscoveryJob(callback?: (err: AWSError, data: DataSync.Types.StartDiscoveryJobResponse) => void): Request<DataSync.Types.StartDiscoveryJobResponse, AWSError>;
|
382
382
|
/**
|
383
|
-
* Starts an DataSync task. For each task, you can only run one task execution at a time. There are several phases to a task execution. For more information, see Task execution statuses. If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
383
|
+
* Starts an DataSync transfer task. For each task, you can only run one task execution at a time. There are several phases to a task execution. For more information, see Task execution statuses. If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
384
384
|
*/
|
385
385
|
startTaskExecution(params: DataSync.Types.StartTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.StartTaskExecutionResponse) => void): Request<DataSync.Types.StartTaskExecutionResponse, AWSError>;
|
386
386
|
/**
|
387
|
-
* Starts an DataSync task. For each task, you can only run one task execution at a time. There are several phases to a task execution. For more information, see Task execution statuses. If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
387
|
+
* Starts an DataSync transfer task. For each task, you can only run one task execution at a time. There are several phases to a task execution. For more information, see Task execution statuses. If you're planning to transfer data to or from an Amazon S3 location, review how DataSync can affect your S3 request charges and the DataSync pricing page before you begin.
|
388
388
|
*/
|
389
389
|
startTaskExecution(callback?: (err: AWSError, data: DataSync.Types.StartTaskExecutionResponse) => void): Request<DataSync.Types.StartTaskExecutionResponse, AWSError>;
|
390
390
|
/**
|
@@ -476,19 +476,19 @@ declare class DataSync extends Service {
|
|
476
476
|
*/
|
477
477
|
updateStorageSystem(callback?: (err: AWSError, data: DataSync.Types.UpdateStorageSystemResponse) => void): Request<DataSync.Types.UpdateStorageSystemResponse, AWSError>;
|
478
478
|
/**
|
479
|
-
* Updates the
|
479
|
+
* Updates the configuration of a DataSync transfer task.
|
480
480
|
*/
|
481
481
|
updateTask(params: DataSync.Types.UpdateTaskRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateTaskResponse) => void): Request<DataSync.Types.UpdateTaskResponse, AWSError>;
|
482
482
|
/**
|
483
|
-
* Updates the
|
483
|
+
* Updates the configuration of a DataSync transfer task.
|
484
484
|
*/
|
485
485
|
updateTask(callback?: (err: AWSError, data: DataSync.Types.UpdateTaskResponse) => void): Request<DataSync.Types.UpdateTaskResponse, AWSError>;
|
486
486
|
/**
|
487
|
-
*
|
487
|
+
* Updates the configuration of a running DataSync task execution. Currently, the only Option that you can modify with UpdateTaskExecution is BytesPerSecond , which throttles bandwidth for a running or queued task execution.
|
488
488
|
*/
|
489
489
|
updateTaskExecution(params: DataSync.Types.UpdateTaskExecutionRequest, callback?: (err: AWSError, data: DataSync.Types.UpdateTaskExecutionResponse) => void): Request<DataSync.Types.UpdateTaskExecutionResponse, AWSError>;
|
490
490
|
/**
|
491
|
-
*
|
491
|
+
* Updates the configuration of a running DataSync task execution. Currently, the only Option that you can modify with UpdateTaskExecution is BytesPerSecond , which throttles bandwidth for a running or queued task execution.
|
492
492
|
*/
|
493
493
|
updateTaskExecution(callback?: (err: AWSError, data: DataSync.Types.UpdateTaskExecutionResponse) => void): Request<DataSync.Types.UpdateTaskExecutionResponse, AWSError>;
|
494
494
|
}
|
@@ -558,7 +558,7 @@ declare namespace DataSync {
|
|
558
558
|
export type AzureBlobContainerUrl = string;
|
559
559
|
export interface AzureBlobSasConfiguration {
|
560
560
|
/**
|
561
|
-
* Specifies a SAS token that provides permissions
|
561
|
+
* Specifies a SAS token that provides permissions to access your Azure Blob Storage. The token is part of the SAS URI string that comes after the storage resource URI and a question mark. A token looks something like this: sp=r&st=2023-12-20T14:54:52Z&se=2023-12-20T22:54:52Z&spr=https&sv=2021-06-08&sr=c&sig=aBBKDWQvyuVcTPH9EBp%2FXTI9E%2F%2Fmq171%2BZU178wcwqU%3D
|
562
562
|
*/
|
563
563
|
Token: AzureBlobSasToken;
|
564
564
|
}
|
@@ -1056,6 +1056,10 @@ declare namespace DataSync {
|
|
1056
1056
|
* Specifies a list of filter rules that include specific data during your transfer. For more information and examples, see Filtering data transferred by DataSync.
|
1057
1057
|
*/
|
1058
1058
|
Includes?: FilterList;
|
1059
|
+
/**
|
1060
|
+
* Specifies how you want to configure a task report, which provides detailed information about for your DataSync transfer.
|
1061
|
+
*/
|
1062
|
+
TaskReportConfig?: TaskReportConfig;
|
1059
1063
|
}
|
1060
1064
|
export interface CreateTaskResponse {
|
1061
1065
|
/**
|
@@ -1663,17 +1667,17 @@ declare namespace DataSync {
|
|
1663
1667
|
}
|
1664
1668
|
export interface DescribeTaskExecutionRequest {
|
1665
1669
|
/**
|
1666
|
-
* Specifies the Amazon Resource Name (ARN) of the
|
1670
|
+
* Specifies the Amazon Resource Name (ARN) of the task execution that you want information about.
|
1667
1671
|
*/
|
1668
1672
|
TaskExecutionArn: TaskExecutionArn;
|
1669
1673
|
}
|
1670
1674
|
export interface DescribeTaskExecutionResponse {
|
1671
1675
|
/**
|
1672
|
-
* The
|
1676
|
+
* The ARN of the task execution that you wanted information about. TaskExecutionArn is hierarchical and includes TaskArn for the task that was executed. For example, a TaskExecution value with the ARN arn:aws:datasync:us-east-1:111222333444:task/task-0208075f79cedf4a2/execution/exec-08ef1e88ec491019b executed the task with the ARN arn:aws:datasync:us-east-1:111222333444:task/task-0208075f79cedf4a2.
|
1673
1677
|
*/
|
1674
1678
|
TaskExecutionArn?: TaskExecutionArn;
|
1675
1679
|
/**
|
1676
|
-
* The status of the task execution.
|
1680
|
+
* The status of the task execution.
|
1677
1681
|
*/
|
1678
1682
|
Status?: TaskExecutionStatus;
|
1679
1683
|
Options?: Options;
|
@@ -1686,23 +1690,23 @@ declare namespace DataSync {
|
|
1686
1690
|
*/
|
1687
1691
|
Includes?: FilterList;
|
1688
1692
|
/**
|
1689
|
-
* The time
|
1693
|
+
* The time when the task execution started.
|
1690
1694
|
*/
|
1691
1695
|
StartTime?: Time;
|
1692
1696
|
/**
|
1693
|
-
* The expected number of files that
|
1697
|
+
* The expected number of files, objects, and directories that DataSync will transfer over the network. This value is calculated during the task execution's PREPARING phase before the TRANSFERRING phase. The calculation is based on comparing the content of the source and destination locations and finding the difference that needs to be transferred.
|
1694
1698
|
*/
|
1695
1699
|
EstimatedFilesToTransfer?: long;
|
1696
1700
|
/**
|
1697
|
-
* The estimated physical number of bytes that
|
1701
|
+
* The estimated physical number of bytes that will transfer over the network.
|
1698
1702
|
*/
|
1699
1703
|
EstimatedBytesToTransfer?: long;
|
1700
1704
|
/**
|
1701
|
-
* The actual number of files that
|
1705
|
+
* The actual number of files, objects, and directories that DataSync transferred over the network. This value is updated periodically during the task execution's TRANSFERRING phase when something is read from the source and sent over the network. If DataSync fails to transfer something, this value can be less than EstimatedFilesToTransfer. In some cases, this value can also be greater than EstimatedFilesToTransfer. This element is implementation-specific for some location types, so don't use it as an exact indication of what transferred or to monitor your task execution.
|
1702
1706
|
*/
|
1703
1707
|
FilesTransferred?: long;
|
1704
1708
|
/**
|
1705
|
-
* The number of logical bytes written to the destination
|
1709
|
+
* The number of logical bytes written to the destination location.
|
1706
1710
|
*/
|
1707
1711
|
BytesWritten?: long;
|
1708
1712
|
/**
|
@@ -1717,6 +1721,30 @@ declare namespace DataSync {
|
|
1717
1721
|
* The physical number of bytes transferred over the network after compression was applied. In most cases, this number is less than BytesTransferred unless the data isn't compressible.
|
1718
1722
|
*/
|
1719
1723
|
BytesCompressed?: long;
|
1724
|
+
/**
|
1725
|
+
* The configuration of your task report, which provides detailed information about for your DataSync transfer.
|
1726
|
+
*/
|
1727
|
+
TaskReportConfig?: TaskReportConfig;
|
1728
|
+
/**
|
1729
|
+
* The number of files, objects, and directories that DataSync deleted in your destination location. If you don't configure your task to delete data in the destination that isn't in the source, the value is always 0.
|
1730
|
+
*/
|
1731
|
+
FilesDeleted?: long;
|
1732
|
+
/**
|
1733
|
+
* The number of files, objects, and directories that DataSync skipped during your transfer.
|
1734
|
+
*/
|
1735
|
+
FilesSkipped?: long;
|
1736
|
+
/**
|
1737
|
+
* The number of files, objects, and directories that DataSync verified during your transfer.
|
1738
|
+
*/
|
1739
|
+
FilesVerified?: long;
|
1740
|
+
/**
|
1741
|
+
* Indicates whether DataSync generated a complete task report for your transfer.
|
1742
|
+
*/
|
1743
|
+
ReportResult?: ReportResult;
|
1744
|
+
/**
|
1745
|
+
* The expected number of files, objects, and directories that DataSync will delete in your destination location. If you don't configure your task to delete data in the destination that isn't in the source, the value is always 0.
|
1746
|
+
*/
|
1747
|
+
EstimatedFilesToDelete?: long;
|
1720
1748
|
}
|
1721
1749
|
export interface DescribeTaskRequest {
|
1722
1750
|
/**
|
@@ -1789,6 +1817,10 @@ declare namespace DataSync {
|
|
1789
1817
|
* A list of filter rules that include specific data during your transfer. For more information and examples, see Filtering data transferred by DataSync.
|
1790
1818
|
*/
|
1791
1819
|
Includes?: FilterList;
|
1820
|
+
/**
|
1821
|
+
* The configuration of your task report. For more information, see Creating a task report.
|
1822
|
+
*/
|
1823
|
+
TaskReportConfig?: TaskReportConfig;
|
1792
1824
|
}
|
1793
1825
|
export type DestinationNetworkInterfaceArns = NetworkInterfaceArn[];
|
1794
1826
|
export type DiscoveryAgentArnList = AgentArn[];
|
@@ -2402,6 +2434,7 @@ declare namespace DataSync {
|
|
2402
2434
|
export type ObjectStorageServerPort = number;
|
2403
2435
|
export type ObjectStorageServerProtocol = "HTTPS"|"HTTP"|string;
|
2404
2436
|
export type ObjectTags = "PRESERVE"|"NONE"|string;
|
2437
|
+
export type ObjectVersionIds = "INCLUDE"|"NONE"|string;
|
2405
2438
|
export interface OnPremConfig {
|
2406
2439
|
/**
|
2407
2440
|
* The Amazon Resource Names (ARNs) of the agents connecting to a transfer location.
|
@@ -2551,6 +2584,66 @@ declare namespace DataSync {
|
|
2551
2584
|
}
|
2552
2585
|
export interface RemoveStorageSystemResponse {
|
2553
2586
|
}
|
2587
|
+
export interface ReportDestination {
|
2588
|
+
/**
|
2589
|
+
* Specifies the Amazon S3 bucket where DataSync uploads your task report.
|
2590
|
+
*/
|
2591
|
+
S3?: ReportDestinationS3;
|
2592
|
+
}
|
2593
|
+
export interface ReportDestinationS3 {
|
2594
|
+
/**
|
2595
|
+
* Specifies a bucket prefix for your report.
|
2596
|
+
*/
|
2597
|
+
Subdirectory?: S3Subdirectory;
|
2598
|
+
/**
|
2599
|
+
* Specifies the ARN of the S3 bucket where DataSync uploads your report.
|
2600
|
+
*/
|
2601
|
+
S3BucketArn: S3BucketArn;
|
2602
|
+
/**
|
2603
|
+
* Specifies the Amazon Resource Name (ARN) of the IAM policy that allows DataSync to upload a task report to your S3 bucket. For more information, see Allowing DataSync to upload a task report to an Amazon S3 bucket.
|
2604
|
+
*/
|
2605
|
+
BucketAccessRoleArn: IamRoleArn;
|
2606
|
+
}
|
2607
|
+
export type ReportLevel = "ERRORS_ONLY"|"SUCCESSES_AND_ERRORS"|string;
|
2608
|
+
export type ReportOutputType = "SUMMARY_ONLY"|"STANDARD"|string;
|
2609
|
+
export interface ReportOverride {
|
2610
|
+
/**
|
2611
|
+
* Specifies whether your task report includes errors only or successes and errors. For example, your report might mostly include only what didn't go well in your transfer (ERRORS_ONLY). At the same time, you want to verify that your task filter is working correctly. In this situation, you can get a list of what files DataSync successfully skipped and if something transferred that you didn't to transfer (SUCCESSES_AND_ERRORS).
|
2612
|
+
*/
|
2613
|
+
ReportLevel?: ReportLevel;
|
2614
|
+
}
|
2615
|
+
export interface ReportOverrides {
|
2616
|
+
/**
|
2617
|
+
* Specifies the level of reporting for the files, objects, and directories that DataSync attempted to transfer.
|
2618
|
+
*/
|
2619
|
+
Transferred?: ReportOverride;
|
2620
|
+
/**
|
2621
|
+
* Specifies the level of reporting for the files, objects, and directories that DataSync attempted to verify at the end of your transfer. This only applies if you configure your task to verify data during and after the transfer (which DataSync does by default).
|
2622
|
+
*/
|
2623
|
+
Verified?: ReportOverride;
|
2624
|
+
/**
|
2625
|
+
* Specifies the level of reporting for the files, objects, and directories that DataSync attempted to delete in your destination location. This only applies if you configure your task to delete data in the destination that isn't in the source.
|
2626
|
+
*/
|
2627
|
+
Deleted?: ReportOverride;
|
2628
|
+
/**
|
2629
|
+
* Specifies the level of reporting for the files, objects, and directories that DataSync attempted to skip during your transfer.
|
2630
|
+
*/
|
2631
|
+
Skipped?: ReportOverride;
|
2632
|
+
}
|
2633
|
+
export interface ReportResult {
|
2634
|
+
/**
|
2635
|
+
* Indicates whether DataSync is still working on your report, created a report, or can't create a complete report.
|
2636
|
+
*/
|
2637
|
+
Status?: PhaseStatus;
|
2638
|
+
/**
|
2639
|
+
* Indicates the code associated with the error if DataSync can't create a complete report.
|
2640
|
+
*/
|
2641
|
+
ErrorCode?: string;
|
2642
|
+
/**
|
2643
|
+
* Provides details about issues creating a report.
|
2644
|
+
*/
|
2645
|
+
ErrorDetail?: string;
|
2646
|
+
}
|
2554
2647
|
export interface ResourceDetails {
|
2555
2648
|
/**
|
2556
2649
|
* The information that DataSync Discovery collects about storage virtual machines (SVMs) in your on-premises storage system.
|
@@ -2657,6 +2750,10 @@ declare namespace DataSync {
|
|
2657
2750
|
* Specifies the tags that you want to apply to the Amazon Resource Name (ARN) representing the task execution. Tags are key-value pairs that help you manage, filter, and search for your DataSync resources.
|
2658
2751
|
*/
|
2659
2752
|
Tags?: InputTagList;
|
2753
|
+
/**
|
2754
|
+
* Specifies how you want to configure a task report, which provides detailed information about for your DataSync transfer.
|
2755
|
+
*/
|
2756
|
+
TaskReportConfig?: TaskReportConfig;
|
2660
2757
|
}
|
2661
2758
|
export interface StartTaskExecutionResponse {
|
2662
2759
|
/**
|
@@ -2796,6 +2893,28 @@ declare namespace DataSync {
|
|
2796
2893
|
Name?: TagValue;
|
2797
2894
|
}
|
2798
2895
|
export type TaskQueueing = "ENABLED"|"DISABLED"|string;
|
2896
|
+
export interface TaskReportConfig {
|
2897
|
+
/**
|
2898
|
+
* Specifies the Amazon S3 bucket where DataSync uploads your task report. For more information, see Task reports.
|
2899
|
+
*/
|
2900
|
+
Destination?: ReportDestination;
|
2901
|
+
/**
|
2902
|
+
* Specifies the type of task report that you want: SUMMARY_ONLY: Provides necessary details about your task, including the number of files, objects, and directories transferred and transfer duration. STANDARD: Provides complete details about your task, including a full list of files, objects, and directories that were transferred, skipped, verified, and more.
|
2903
|
+
*/
|
2904
|
+
OutputType?: ReportOutputType;
|
2905
|
+
/**
|
2906
|
+
* Specifies whether you want your task report to include only what went wrong with your transfer or a list of what succeeded and didn't. ERRORS_ONLY: A report shows what DataSync was unable to transfer, skip, verify, and delete. SUCCESSES_AND_ERRORS: A report shows what DataSync was able and unable to transfer, skip, verify, and delete.
|
2907
|
+
*/
|
2908
|
+
ReportLevel?: ReportLevel;
|
2909
|
+
/**
|
2910
|
+
* Specifies whether your task report includes the new version of each object transferred into an S3 bucket. This only applies if you enable versioning on your bucket. Keep in mind that setting this to INCLUDE can increase the duration of your task execution.
|
2911
|
+
*/
|
2912
|
+
ObjectVersionIds?: ObjectVersionIds;
|
2913
|
+
/**
|
2914
|
+
* Customizes the reporting level for aspects of your task report. For example, your report might generally only include errors, but you could specify that you want a list of successes and errors just for the files that DataSync attempted to delete in your destination location.
|
2915
|
+
*/
|
2916
|
+
Overrides?: ReportOverrides;
|
2917
|
+
}
|
2799
2918
|
export interface TaskSchedule {
|
2800
2919
|
/**
|
2801
2920
|
* A cron expression that specifies when DataSync initiates a scheduled transfer from a source to a destination location.
|
@@ -3091,6 +3210,10 @@ declare namespace DataSync {
|
|
3091
3210
|
* Specifies a list of filter rules that include specific data during your transfer. For more information and examples, see Filtering data transferred by DataSync.
|
3092
3211
|
*/
|
3093
3212
|
Includes?: FilterList;
|
3213
|
+
/**
|
3214
|
+
* Specifies how you want to configure a task report, which provides detailed information about for your DataSync transfer.
|
3215
|
+
*/
|
3216
|
+
TaskReportConfig?: TaskReportConfig;
|
3094
3217
|
}
|
3095
3218
|
export interface UpdateTaskResponse {
|
3096
3219
|
}
|