cdk-comprehend-s3olap 2.0.49 → 2.0.52
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 +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +116 -0
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +67 -20
- package/node_modules/aws-sdk/apis/config-2014-11-12.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +70 -53
- package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +22 -2
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +3 -1
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/shield-2016-06-02.min.json +40 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +104 -66
- package/node_modules/aws-sdk/clients/chime.d.ts +135 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +66 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +79 -79
- package/node_modules/aws-sdk/clients/es.d.ts +7 -3
- package/node_modules/aws-sdk/clients/fsx.d.ts +4 -4
- package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +109 -85
- package/node_modules/aws-sdk/clients/lookoutvision.d.ts +39 -7
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +1 -1
- package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/shield.d.ts +75 -23
- package/node_modules/aws-sdk/clients/ssm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/workspaces.d.ts +65 -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 +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +75 -23
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/dist-tools/service-collector.js +4 -6
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +5 -1
- package/node_modules/esbuild/lib/main.js +13 -7
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +10 -10
@@ -91,6 +91,14 @@ declare class WorkSpaces extends Service {
|
|
91
91
|
* Creates the specified WorkSpace bundle. For more information about creating WorkSpace bundles, see Create a Custom WorkSpaces Image and Bundle.
|
92
92
|
*/
|
93
93
|
createWorkspaceBundle(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspaceBundleResult) => void): Request<WorkSpaces.Types.CreateWorkspaceBundleResult, AWSError>;
|
94
|
+
/**
|
95
|
+
* Creates a new WorkSpace image from an existing WorkSpace.
|
96
|
+
*/
|
97
|
+
createWorkspaceImage(params: WorkSpaces.Types.CreateWorkspaceImageRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspaceImageResult) => void): Request<WorkSpaces.Types.CreateWorkspaceImageResult, AWSError>;
|
98
|
+
/**
|
99
|
+
* Creates a new WorkSpace image from an existing WorkSpace.
|
100
|
+
*/
|
101
|
+
createWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.CreateWorkspaceImageResult) => void): Request<WorkSpaces.Types.CreateWorkspaceImageResult, AWSError>;
|
94
102
|
/**
|
95
103
|
* Creates one or more WorkSpaces. This operation is asynchronous and returns before the WorkSpaces are created.
|
96
104
|
*/
|
@@ -840,6 +848,58 @@ declare namespace WorkSpaces {
|
|
840
848
|
export interface CreateWorkspaceBundleResult {
|
841
849
|
WorkspaceBundle?: WorkspaceBundle;
|
842
850
|
}
|
851
|
+
export interface CreateWorkspaceImageRequest {
|
852
|
+
/**
|
853
|
+
* The name of the new WorkSpace image.
|
854
|
+
*/
|
855
|
+
Name: WorkspaceImageName;
|
856
|
+
/**
|
857
|
+
* The description of the new WorkSpace image.
|
858
|
+
*/
|
859
|
+
Description: WorkspaceImageDescription;
|
860
|
+
/**
|
861
|
+
* The identifier of the source WorkSpace
|
862
|
+
*/
|
863
|
+
WorkspaceId: WorkspaceId;
|
864
|
+
/**
|
865
|
+
* The tags that you want to add to the new WorkSpace image. To add tags when you're creating the image, you must create an IAM policy that grants your IAM user permission to use workspaces:CreateTags.
|
866
|
+
*/
|
867
|
+
Tags?: TagList;
|
868
|
+
}
|
869
|
+
export interface CreateWorkspaceImageResult {
|
870
|
+
/**
|
871
|
+
* The identifier of the new WorkSpace image.
|
872
|
+
*/
|
873
|
+
ImageId?: WorkspaceImageId;
|
874
|
+
/**
|
875
|
+
* The name of the image.
|
876
|
+
*/
|
877
|
+
Name?: WorkspaceImageName;
|
878
|
+
/**
|
879
|
+
* The description of the image.
|
880
|
+
*/
|
881
|
+
Description?: WorkspaceImageDescription;
|
882
|
+
/**
|
883
|
+
* The operating system that the image is running.
|
884
|
+
*/
|
885
|
+
OperatingSystem?: OperatingSystem;
|
886
|
+
/**
|
887
|
+
* The availability status of the image.
|
888
|
+
*/
|
889
|
+
State?: WorkspaceImageState;
|
890
|
+
/**
|
891
|
+
* Specifies whether the image is running on dedicated hardware. When Bring Your Own License (BYOL) is enabled, this value is set to DEDICATED. For more information, see Bring Your Own Windows Desktop Images.
|
892
|
+
*/
|
893
|
+
RequiredTenancy?: WorkspaceImageRequiredTenancy;
|
894
|
+
/**
|
895
|
+
* The date when the image was created.
|
896
|
+
*/
|
897
|
+
Created?: Timestamp;
|
898
|
+
/**
|
899
|
+
* The identifier of the AWS account that owns the image.
|
900
|
+
*/
|
901
|
+
OwnerAccountId?: AwsAccount;
|
902
|
+
}
|
843
903
|
export interface CreateWorkspacesRequest {
|
844
904
|
/**
|
845
905
|
* The WorkSpaces to create. You can specify up to 25 WorkSpaces.
|
@@ -863,7 +923,7 @@ declare namespace WorkSpaces {
|
|
863
923
|
export type DedicatedTenancySupportResultEnum = "ENABLED"|"DISABLED"|string;
|
864
924
|
export interface DefaultClientBrandingAttributes {
|
865
925
|
/**
|
866
|
-
* The logo
|
926
|
+
* The logo. The only image format accepted is a binary data object that is converted from a .png file.
|
867
927
|
*/
|
868
928
|
LogoUrl?: ClientUrl;
|
869
929
|
/**
|
@@ -879,7 +939,7 @@ declare namespace WorkSpaces {
|
|
879
939
|
*/
|
880
940
|
ForgotPasswordLink?: ClientUrl;
|
881
941
|
/**
|
882
|
-
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US.
|
942
|
+
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US. The HTML tags supported include the following: a, b, blockquote, br, cite, code, dd, dl, dt, div, em, i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul.
|
883
943
|
*/
|
884
944
|
LoginMessage?: LoginMessage;
|
885
945
|
}
|
@@ -901,7 +961,7 @@ declare namespace WorkSpaces {
|
|
901
961
|
*/
|
902
962
|
ForgotPasswordLink?: ClientUrl;
|
903
963
|
/**
|
904
|
-
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US.
|
964
|
+
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US. The HTML tags supported include the following: a, b, blockquote, br, cite, code, dd, dl, dt, div, em, i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul.
|
905
965
|
*/
|
906
966
|
LoginMessage?: LoginMessage;
|
907
967
|
}
|
@@ -1559,7 +1619,7 @@ declare namespace WorkSpaces {
|
|
1559
1619
|
*/
|
1560
1620
|
ForgotPasswordLink?: ClientUrl;
|
1561
1621
|
/**
|
1562
|
-
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US.
|
1622
|
+
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US. The HTML tags supported include the following: a, b, blockquote, br, cite, code, dd, dl, dt, div, em, i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul.
|
1563
1623
|
*/
|
1564
1624
|
LoginMessage?: LoginMessage;
|
1565
1625
|
}
|
@@ -1589,7 +1649,7 @@ declare namespace WorkSpaces {
|
|
1589
1649
|
*/
|
1590
1650
|
ForgotPasswordLink?: ClientUrl;
|
1591
1651
|
/**
|
1592
|
-
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US.
|
1652
|
+
* The login message. Specified as a key value pair, in which the key is a locale and the value is the localized message for that locale. The only key supported is en_US. The HTML tags supported include the following: a, b, blockquote, br, cite, code, dd, dl, dt, div, em, i, li, ol, p, pre, q, small, span, strike, strong, sub, sup, u, ul.
|
1593
1653
|
*/
|
1594
1654
|
LoginMessage?: LoginMessage;
|
1595
1655
|
}
|