cdk-lambda-subminute 2.0.437 → 2.0.439
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/.jsii +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +1059 -90
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +41 -34
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +68 -7
- package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +24 -0
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +2 -1
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +46 -35
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +146 -82
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +182 -19
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +165 -93
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +586 -188
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +235 -129
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +84 -43
- package/node_modules/aws-sdk/clients/bedrock.d.ts +1082 -118
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +24 -2
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +65 -1
- package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +37 -10
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +11 -7
- package/node_modules/aws-sdk/clients/datasync.d.ts +67 -42
- package/node_modules/aws-sdk/clients/ec2.d.ts +112 -40
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +205 -0
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +64 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +592 -88
- package/node_modules/aws-sdk/clients/pi.d.ts +5 -5
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +186 -6
- package/node_modules/aws-sdk/clients/workspacesweb.d.ts +89 -23
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +984 -403
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +78 -78
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -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
|
127
|
+
* Configures a task, which defines where and how DataSync transfers your data. A task includes a source location, destination location, and transfer options (such as bandwidth limits, scheduling, and more). 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
|
131
|
+
* Configures a task, which defines where and how DataSync transfers your data. A task includes a source location, destination location, and transfer options (such as bandwidth limits, scheduling, and more). 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
|
/**
|
@@ -284,11 +284,11 @@ declare class DataSync extends Service {
|
|
284
284
|
*/
|
285
285
|
describeStorageSystemResources(callback?: (err: AWSError, data: DataSync.Types.DescribeStorageSystemResourcesResponse) => void): Request<DataSync.Types.DescribeStorageSystemResourcesResponse, AWSError>;
|
286
286
|
/**
|
287
|
-
* Provides information about
|
287
|
+
* Provides information about a task, which defines where and how DataSync transfers your data.
|
288
288
|
*/
|
289
289
|
describeTask(params: DataSync.Types.DescribeTaskRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeTaskResponse) => void): Request<DataSync.Types.DescribeTaskResponse, AWSError>;
|
290
290
|
/**
|
291
|
-
* Provides information about
|
291
|
+
* Provides information about a task, which defines where and how DataSync transfers your data.
|
292
292
|
*/
|
293
293
|
describeTask(callback?: (err: AWSError, data: DataSync.Types.DescribeTaskResponse) => void): Request<DataSync.Types.DescribeTaskResponse, AWSError>;
|
294
294
|
/**
|
@@ -476,11 +476,11 @@ 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 configuration of
|
479
|
+
* Updates the configuration of a task, which defines where and how DataSync transfers your data.
|
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 configuration of
|
483
|
+
* Updates the configuration of a task, which defines where and how DataSync transfers your data.
|
484
484
|
*/
|
485
485
|
updateTask(callback?: (err: AWSError, data: DataSync.Types.UpdateTaskResponse) => void): Request<DataSync.Types.UpdateTaskResponse, AWSError>;
|
486
486
|
/**
|
@@ -1026,39 +1026,39 @@ declare namespace DataSync {
|
|
1026
1026
|
}
|
1027
1027
|
export interface CreateTaskRequest {
|
1028
1028
|
/**
|
1029
|
-
*
|
1029
|
+
* Specifies the ARN of your transfer's source location.
|
1030
1030
|
*/
|
1031
1031
|
SourceLocationArn: LocationArn;
|
1032
1032
|
/**
|
1033
|
-
*
|
1033
|
+
* Specifies the ARN of your transfer's destination location.
|
1034
1034
|
*/
|
1035
1035
|
DestinationLocationArn: LocationArn;
|
1036
1036
|
/**
|
1037
|
-
*
|
1037
|
+
* Specifies the Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your task.
|
1038
1038
|
*/
|
1039
1039
|
CloudWatchLogGroupArn?: LogGroupArn;
|
1040
1040
|
/**
|
1041
|
-
*
|
1041
|
+
* Specifies the name of your task.
|
1042
1042
|
*/
|
1043
1043
|
Name?: TagValue;
|
1044
1044
|
/**
|
1045
|
-
* Specifies
|
1045
|
+
* Specifies your task's settings, such as preserving file metadata, verifying data integrity, among other options.
|
1046
1046
|
*/
|
1047
1047
|
Options?: Options;
|
1048
1048
|
/**
|
1049
|
-
* Specifies
|
1049
|
+
* Specifies exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
1050
1050
|
*/
|
1051
1051
|
Excludes?: FilterList;
|
1052
1052
|
/**
|
1053
|
-
* Specifies a schedule
|
1053
|
+
* Specifies a schedule for when you want your task to run. For more information, see Scheduling your task.
|
1054
1054
|
*/
|
1055
1055
|
Schedule?: TaskSchedule;
|
1056
1056
|
/**
|
1057
|
-
* Specifies the tags that you want to apply to
|
1057
|
+
* Specifies the tags that you want to apply to your task. Tags are key-value pairs that help you manage, filter, and search for your DataSync resources.
|
1058
1058
|
*/
|
1059
1059
|
Tags?: InputTagList;
|
1060
1060
|
/**
|
1061
|
-
* Specifies
|
1061
|
+
* Specifies include filters define the files, objects, and folders in your source location that you want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
1062
1062
|
*/
|
1063
1063
|
Includes?: FilterList;
|
1064
1064
|
/**
|
@@ -1765,65 +1765,65 @@ declare namespace DataSync {
|
|
1765
1765
|
}
|
1766
1766
|
export interface DescribeTaskRequest {
|
1767
1767
|
/**
|
1768
|
-
* Specifies the Amazon Resource Name (ARN) of the transfer task.
|
1768
|
+
* Specifies the Amazon Resource Name (ARN) of the transfer task that you want information about.
|
1769
1769
|
*/
|
1770
1770
|
TaskArn: TaskArn;
|
1771
1771
|
}
|
1772
1772
|
export interface DescribeTaskResponse {
|
1773
1773
|
/**
|
1774
|
-
* The
|
1774
|
+
* The ARN of your task.
|
1775
1775
|
*/
|
1776
1776
|
TaskArn?: TaskArn;
|
1777
1777
|
/**
|
1778
|
-
* The status of
|
1778
|
+
* The status of your task. For information about what each status means, see Task statuses.
|
1779
1779
|
*/
|
1780
1780
|
Status?: TaskStatus;
|
1781
1781
|
/**
|
1782
|
-
* The name of
|
1782
|
+
* The name of your task.
|
1783
1783
|
*/
|
1784
1784
|
Name?: TagValue;
|
1785
1785
|
/**
|
1786
|
-
* The
|
1786
|
+
* The ARN of the most recent task execution.
|
1787
1787
|
*/
|
1788
1788
|
CurrentTaskExecutionArn?: TaskExecutionArn;
|
1789
1789
|
/**
|
1790
|
-
* The
|
1790
|
+
* The ARN of your transfer's source location.
|
1791
1791
|
*/
|
1792
1792
|
SourceLocationArn?: LocationArn;
|
1793
1793
|
/**
|
1794
|
-
* The
|
1794
|
+
* The ARN of your transfer's destination location.
|
1795
1795
|
*/
|
1796
1796
|
DestinationLocationArn?: LocationArn;
|
1797
1797
|
/**
|
1798
|
-
* The Amazon Resource Name (ARN) of
|
1798
|
+
* The Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your task. For more information, see Monitoring DataSync with Amazon CloudWatch.
|
1799
1799
|
*/
|
1800
1800
|
CloudWatchLogGroupArn?: LogGroupArn;
|
1801
1801
|
/**
|
1802
|
-
* The
|
1802
|
+
* The ARNs of the network interfaces that DataSync created for your source location.
|
1803
1803
|
*/
|
1804
1804
|
SourceNetworkInterfaceArns?: SourceNetworkInterfaceArns;
|
1805
1805
|
/**
|
1806
|
-
* The
|
1806
|
+
* The ARNs of the network interfaces that DataSync created for your destination location.
|
1807
1807
|
*/
|
1808
1808
|
DestinationNetworkInterfaceArns?: DestinationNetworkInterfaceArns;
|
1809
1809
|
/**
|
1810
|
-
* The
|
1810
|
+
* The task's settings. For example, what file metadata gets preserved, how data integrity gets verified at the end of your transfer, bandwidth limits, among other options.
|
1811
1811
|
*/
|
1812
1812
|
Options?: Options;
|
1813
1813
|
/**
|
1814
|
-
*
|
1814
|
+
* The exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
1815
1815
|
*/
|
1816
1816
|
Excludes?: FilterList;
|
1817
1817
|
/**
|
1818
|
-
* The schedule
|
1818
|
+
* The schedule for when you want your task to run. For more information, see Scheduling your task.
|
1819
1819
|
*/
|
1820
1820
|
Schedule?: TaskSchedule;
|
1821
1821
|
/**
|
1822
|
-
*
|
1822
|
+
* If there's an issue with your task, you can use the error code to help you troubleshoot the problem. For more information, see Troubleshooting issues with DataSync transfers.
|
1823
1823
|
*/
|
1824
1824
|
ErrorCode?: string;
|
1825
1825
|
/**
|
1826
|
-
*
|
1826
|
+
* If there's an issue with your task, you can use the error details to help you troubleshoot the problem. For more information, see Troubleshooting issues with DataSync transfers.
|
1827
1827
|
*/
|
1828
1828
|
ErrorDetail?: string;
|
1829
1829
|
/**
|
@@ -1831,17 +1831,21 @@ declare namespace DataSync {
|
|
1831
1831
|
*/
|
1832
1832
|
CreationTime?: Time;
|
1833
1833
|
/**
|
1834
|
-
*
|
1834
|
+
* The include filters that define the files, objects, and folders in your source location that you want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
1835
1835
|
*/
|
1836
1836
|
Includes?: FilterList;
|
1837
1837
|
/**
|
1838
|
-
* The configuration of the manifest that lists the files or objects to transfer. For more information, see Specifying what DataSync transfers by using a manifest.
|
1838
|
+
* The configuration of the manifest that lists the files or objects that you want DataSync to transfer. For more information, see Specifying what DataSync transfers by using a manifest.
|
1839
1839
|
*/
|
1840
1840
|
ManifestConfig?: ManifestConfig;
|
1841
1841
|
/**
|
1842
|
-
* The configuration of your task report, which provides detailed information about
|
1842
|
+
* The configuration of your task report, which provides detailed information about your DataSync transfer. For more information, see Monitoring your DataSync transfers with task reports.
|
1843
1843
|
*/
|
1844
1844
|
TaskReportConfig?: TaskReportConfig;
|
1845
|
+
/**
|
1846
|
+
* The details about your task schedule.
|
1847
|
+
*/
|
1848
|
+
ScheduleDetails?: TaskScheduleDetails;
|
1845
1849
|
}
|
1846
1850
|
export type DestinationNetworkInterfaceArns = NetworkInterfaceArn[];
|
1847
1851
|
export type DiscoveryAgentArnList = AgentArn[];
|
@@ -2481,7 +2485,7 @@ declare namespace DataSync {
|
|
2481
2485
|
export type Operator = "Equals"|"NotEquals"|"In"|"LessThanOrEqual"|"LessThan"|"GreaterThanOrEqual"|"GreaterThan"|"Contains"|"NotContains"|"BeginsWith"|string;
|
2482
2486
|
export interface Options {
|
2483
2487
|
/**
|
2484
|
-
* Specifies how and when DataSync checks the integrity of your data during a transfer. ONLY_FILES_TRANSFERRED (recommended) - DataSync calculates the checksum of transferred files and metadata at the source location. At the end of the transfer, DataSync then compares this checksum to the checksum calculated on those files at the destination. We recommend this option when transferring to S3 Glacier Flexible Retrieval or S3 Glacier Deep Archive storage classes. For more information, see Storage class considerations with Amazon S3 locations. POINT_IN_TIME_CONSISTENT (default) - At the end of the transfer, DataSync scans the entire source and destination to verify that both locations are fully synchronized. You can't use this option when transferring to S3 Glacier Flexible Retrieval or S3 Glacier Deep Archive storage classes. For more information, see Storage class considerations with Amazon S3 locations. NONE - DataSync doesn't run additional verification at the end of the transfer. All data transmissions are still integrity-checked with checksum verification during the transfer.
|
2488
|
+
* Specifies how and when DataSync checks the integrity of your data during a transfer. ONLY_FILES_TRANSFERRED (recommended) - DataSync calculates the checksum of transferred files and metadata at the source location. At the end of the transfer, DataSync then compares this checksum to the checksum calculated on those files at the destination. We recommend this option when transferring to S3 Glacier Flexible Retrieval or S3 Glacier Deep Archive storage classes. For more information, see Storage class considerations with Amazon S3 locations. POINT_IN_TIME_CONSISTENT (default) - At the end of the transfer, DataSync scans the entire source and destination to verify that both locations are fully synchronized. If you use a manifest, DataSync only scans and verifies what's listed in the manifest. You can't use this option when transferring to S3 Glacier Flexible Retrieval or S3 Glacier Deep Archive storage classes. For more information, see Storage class considerations with Amazon S3 locations. NONE - DataSync doesn't run additional verification at the end of the transfer. All data transmissions are still integrity-checked with checksum verification during the transfer.
|
2485
2489
|
*/
|
2486
2490
|
VerifyMode?: VerifyMode;
|
2487
2491
|
/**
|
@@ -2562,7 +2566,7 @@ declare namespace DataSync {
|
|
2562
2566
|
export type PhaseStatus = "PENDING"|"SUCCESS"|"ERROR"|string;
|
2563
2567
|
export interface Platform {
|
2564
2568
|
/**
|
2565
|
-
* The version of the DataSync agent.
|
2569
|
+
* The version of the DataSync agent.
|
2566
2570
|
*/
|
2567
2571
|
Version?: AgentVersion;
|
2568
2572
|
}
|
@@ -2754,7 +2758,10 @@ declare namespace DataSync {
|
|
2754
2758
|
export type S3ObjectVersionId = string;
|
2755
2759
|
export type S3StorageClass = "STANDARD"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"GLACIER"|"DEEP_ARCHIVE"|"OUTPOSTS"|"GLACIER_INSTANT_RETRIEVAL"|string;
|
2756
2760
|
export type S3Subdirectory = string;
|
2761
|
+
export type ScheduleDisabledBy = "USER"|"SERVICE"|string;
|
2762
|
+
export type ScheduleDisabledReason = string;
|
2757
2763
|
export type ScheduleExpressionCron = string;
|
2764
|
+
export type ScheduleStatus = "ENABLED"|"DISABLED"|string;
|
2758
2765
|
export type SecretsManagerArn = string;
|
2759
2766
|
export type ServerHostname = string;
|
2760
2767
|
export type SmbDomain = string;
|
@@ -2989,9 +2996,27 @@ declare namespace DataSync {
|
|
2989
2996
|
}
|
2990
2997
|
export interface TaskSchedule {
|
2991
2998
|
/**
|
2992
|
-
*
|
2999
|
+
* Specifies your task schedule by using a cron expression in UTC time. For information about cron expression syntax, see the Amazon EventBridge User Guide .
|
2993
3000
|
*/
|
2994
3001
|
ScheduleExpression: ScheduleExpressionCron;
|
3002
|
+
/**
|
3003
|
+
* Specifies whether to enable or disable your task schedule. Your schedule is enabled by default, but there can be situations where you need to disable it. For example, you might need to pause a recurring transfer or fix an issue with your task or perform maintenance on your storage system. DataSync might disable your schedule automatically if your task fails repeatedly with the same error. For more information, see TaskScheduleDetails.
|
3004
|
+
*/
|
3005
|
+
Status?: ScheduleStatus;
|
3006
|
+
}
|
3007
|
+
export interface TaskScheduleDetails {
|
3008
|
+
/**
|
3009
|
+
* Indicates the last time the status of your task schedule changed. For example, if DataSync automatically disables your schedule because of a repeated error, you can see when the schedule was disabled.
|
3010
|
+
*/
|
3011
|
+
StatusUpdateTime?: Time;
|
3012
|
+
/**
|
3013
|
+
* Provides a reason if the task schedule is disabled. If your schedule is disabled by USER, you see a Manually disabled by user. message. If your schedule is disabled by SERVICE, you see an error message to help you understand why the task keeps failing. For information on resolving DataSync errors, see Troubleshooting issues with DataSync transfers.
|
3014
|
+
*/
|
3015
|
+
DisabledReason?: ScheduleDisabledReason;
|
3016
|
+
/**
|
3017
|
+
* Indicates how your task schedule was disabled. USER - Your schedule was manually disabled by using the UpdateTask operation or DataSync console. SERVICE - Your schedule was automatically disabled by DataSync because the task failed repeatedly with the same error.
|
3018
|
+
*/
|
3019
|
+
DisabledBy?: ScheduleDisabledBy;
|
2995
3020
|
}
|
2996
3021
|
export type TaskStatus = "AVAILABLE"|"CREATING"|"QUEUED"|"RUNNING"|"UNAVAILABLE"|string;
|
2997
3022
|
export interface Throughput {
|
@@ -3258,28 +3283,28 @@ declare namespace DataSync {
|
|
3258
3283
|
}
|
3259
3284
|
export interface UpdateTaskRequest {
|
3260
3285
|
/**
|
3261
|
-
*
|
3286
|
+
* Specifies the ARN of the task that you want to update.
|
3262
3287
|
*/
|
3263
3288
|
TaskArn: TaskArn;
|
3264
3289
|
Options?: Options;
|
3265
3290
|
/**
|
3266
|
-
* Specifies
|
3291
|
+
* Specifies exclude filters that define the files, objects, and folders in your source location that you don't want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
3267
3292
|
*/
|
3268
3293
|
Excludes?: FilterList;
|
3269
3294
|
/**
|
3270
|
-
* Specifies a schedule
|
3295
|
+
* Specifies a schedule for when you want your task to run. For more information, see Scheduling your task.
|
3271
3296
|
*/
|
3272
3297
|
Schedule?: TaskSchedule;
|
3273
3298
|
/**
|
3274
|
-
*
|
3299
|
+
* Specifies the name of your task.
|
3275
3300
|
*/
|
3276
3301
|
Name?: TagValue;
|
3277
3302
|
/**
|
3278
|
-
*
|
3303
|
+
* Specifies the Amazon Resource Name (ARN) of an Amazon CloudWatch log group for monitoring your task.
|
3279
3304
|
*/
|
3280
3305
|
CloudWatchLogGroupArn?: LogGroupArn;
|
3281
3306
|
/**
|
3282
|
-
* Specifies
|
3307
|
+
* Specifies include filters define the files, objects, and folders in your source location that you want DataSync to transfer. For more information and examples, see Specifying what DataSync transfers by using filters.
|
3283
3308
|
*/
|
3284
3309
|
Includes?: FilterList;
|
3285
3310
|
/**
|