cdk-lambda-subminute 2.0.396 → 2.0.398
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 +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +11 -16
- package/node_modules/aws-sdk/apis/appconfig-2019-10-09.min.json +9 -1
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +9 -1
- package/node_modules/aws-sdk/apis/grafana-2020-08-18.min.json +82 -75
- package/node_modules/aws-sdk/apis/imagebuilder-2019-12-02.min.json +6 -0
- package/node_modules/aws-sdk/apis/payment-cryptography-data-2022-02-03.min.json +83 -62
- package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +61 -50
- package/node_modules/aws-sdk/apis/verifiedpermissions-2021-12-01.min.json +88 -22
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +106 -106
- package/node_modules/aws-sdk/clients/appconfig.d.ts +24 -14
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +4 -4
- package/node_modules/aws-sdk/clients/ec2.d.ts +17 -9
- package/node_modules/aws-sdk/clients/grafana.d.ts +26 -9
- package/node_modules/aws-sdk/clients/imagebuilder.d.ts +11 -3
- package/node_modules/aws-sdk/clients/lambda.d.ts +46 -46
- package/node_modules/aws-sdk/clients/mwaa.d.ts +1 -1
- package/node_modules/aws-sdk/clients/paymentcryptographydata.d.ts +68 -36
- package/node_modules/aws-sdk/clients/rds.d.ts +20 -10
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- package/node_modules/aws-sdk/clients/snowball.d.ts +1 -1
- package/node_modules/aws-sdk/clients/verifiedpermissions.d.ts +75 -26
- package/node_modules/aws-sdk/clients/wafv2.d.ts +14 -13
- package/node_modules/aws-sdk/clients/workspaces.d.ts +5 -5
- 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 +9 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +73 -54
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +67 -67
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +2 -2
- package/node_modules/aws-sdk/package.json +3 -2
- package/node_modules/aws-sdk/scripts/warn-maintenance-mode.js +14 -0
- package/package.json +3 -3
@@ -116,11 +116,11 @@ declare class WorkSpaces extends Service {
|
|
116
116
|
*/
|
117
117
|
createWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspaceImageResult) => void): Request<WorkSpaces.Types.CreateWorkspaceImageResult, AWSError>;
|
118
118
|
/**
|
119
|
-
* Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles.
|
119
|
+
* Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core.
|
120
120
|
*/
|
121
121
|
createWorkspaces(params: WorkSpaces.Types.CreateWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspacesResult) => void): Request<WorkSpaces.Types.CreateWorkspacesResult, AWSError>;
|
122
122
|
/**
|
123
|
-
* Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles.
|
123
|
+
* Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created. The MANUAL running mode value is only supported by Amazon WorkSpaces Core. Contact your account team to be allow-listed to use this value. For more information, see Amazon WorkSpaces Core. You don't need to specify the PCOIP protocol for Linux bundles because WSP is the default protocol for those bundles. User-decoupled WorkSpaces are only supported by Amazon WorkSpaces Core.
|
124
124
|
*/
|
125
125
|
createWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspacesResult) => void): Request<WorkSpaces.Types.CreateWorkspacesResult, AWSError>;
|
126
126
|
/**
|
@@ -492,11 +492,11 @@ declare class WorkSpaces extends Service {
|
|
492
492
|
*/
|
493
493
|
modifyWorkspaceState(callback?: (err: AWSError, data: WorkSpaces.Types.ModifyWorkspaceStateResult) => void): Request<WorkSpaces.Types.ModifyWorkspaceStateResult, AWSError>;
|
494
494
|
/**
|
495
|
-
* Reboots the specified WorkSpaces. You cannot reboot a WorkSpace unless its state is AVAILABLE or
|
495
|
+
* Reboots the specified WorkSpaces. You cannot reboot a WorkSpace unless its state is AVAILABLE, UNHEALTHY, or REBOOTING. Reboot a WorkSpace in the REBOOTING state only if your WorkSpace has been stuck in the REBOOTING state for over 20 minutes. This operation is asynchronous and returns before the WorkSpaces have rebooted.
|
496
496
|
*/
|
497
497
|
rebootWorkspaces(params: WorkSpaces.Types.RebootWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.RebootWorkspacesResult) => void): Request<WorkSpaces.Types.RebootWorkspacesResult, AWSError>;
|
498
498
|
/**
|
499
|
-
* Reboots the specified WorkSpaces. You cannot reboot a WorkSpace unless its state is AVAILABLE or
|
499
|
+
* Reboots the specified WorkSpaces. You cannot reboot a WorkSpace unless its state is AVAILABLE, UNHEALTHY, or REBOOTING. Reboot a WorkSpace in the REBOOTING state only if your WorkSpace has been stuck in the REBOOTING state for over 20 minutes. This operation is asynchronous and returns before the WorkSpaces have rebooted.
|
500
500
|
*/
|
501
501
|
rebootWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.RebootWorkspacesResult) => void): Request<WorkSpaces.Types.RebootWorkspacesResult, AWSError>;
|
502
502
|
/**
|
@@ -2775,7 +2775,7 @@ declare namespace WorkSpaces {
|
|
2775
2775
|
*/
|
2776
2776
|
IpAddress?: IpAddress;
|
2777
2777
|
/**
|
2778
|
-
* The operational state of the WorkSpace. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
|
2778
|
+
* The operational state of the WorkSpace. PENDING – The WorkSpace is in a waiting state (for example, the WorkSpace is being created). AVAILABLE – The WorkSpace is running and has passed the health checks. IMPAIRED – Refer to UNHEALTHY state. UNHEALTHY – The WorkSpace is not responding to health checks. REBOOTING – The WorkSpace is being rebooted (restarted). STARTING – The WorkSpace is starting up and health checks are being run. REBUILDING – The WorkSpace is being rebuilt. RESTORING – The WorkSpace is being restored. MAINTENANCE – The WorkSpace is undergoing scheduled maintenance by Amazon Web Services. ADMIN_MAINTENANCE – The WorkSpace is undergoing maintenance by the WorkSpaces administrator. TERMINATING – The WorkSpace is being deleted. TERMINATED – The WorkSpace has been deleted. SUSPENDED – The WorkSpace has been suspended for image creation. UPDATING – The WorkSpace is undergoing an update. STOPPING – The WorkSpace is being stopped. STOPPED – The WorkSpace has been stopped. ERROR – The WorkSpace is an error state (for example, an error occurred during startup). After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
|
2779
2779
|
*/
|
2780
2780
|
State?: WorkspaceState;
|
2781
2781
|
/**
|