cdk-comprehend-s3olap 2.0.48 → 2.0.51

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.
Files changed (60) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +25 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +34 -3
  8. package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +116 -0
  9. package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +67 -20
  10. package/node_modules/aws-sdk/apis/config-2014-11-12.paginators.json +5 -0
  11. package/node_modules/aws-sdk/apis/detective-2018-10-26.min.json +213 -39
  12. package/node_modules/aws-sdk/apis/detective-2018-10-26.paginators.json +5 -0
  13. package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
  14. package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +70 -53
  15. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +776 -162
  16. package/node_modules/aws-sdk/apis/guardduty-2017-11-28.paginators.json +6 -0
  17. package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +35 -6
  18. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +149 -6
  19. package/node_modules/aws-sdk/apis/macie2-2020-01-01.waiters2.json +25 -0
  20. package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +3 -1
  21. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
  22. package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +7 -1
  23. package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +717 -67
  24. package/node_modules/aws-sdk/apis/transfer-2018-11-05.paginators.json +24 -0
  25. package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +104 -66
  26. package/node_modules/aws-sdk/clients/appsync.d.ts +41 -3
  27. package/node_modules/aws-sdk/clients/autoscaling.d.ts +118 -118
  28. package/node_modules/aws-sdk/clients/chime.d.ts +135 -4
  29. package/node_modules/aws-sdk/clients/configservice.d.ts +66 -0
  30. package/node_modules/aws-sdk/clients/detective.d.ts +176 -4
  31. package/node_modules/aws-sdk/clients/ec2.d.ts +23 -23
  32. package/node_modules/aws-sdk/clients/es.d.ts +7 -3
  33. package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +109 -85
  34. package/node_modules/aws-sdk/clients/guardduty.d.ts +604 -1
  35. package/node_modules/aws-sdk/clients/lookoutvision.d.ts +53 -9
  36. package/node_modules/aws-sdk/clients/macie2.d.ts +131 -9
  37. package/node_modules/aws-sdk/clients/macie2.js +1 -0
  38. package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +1 -1
  39. package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
  40. package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
  41. package/node_modules/aws-sdk/clients/rds.d.ts +2 -2
  42. package/node_modules/aws-sdk/clients/rekognition.d.ts +12 -4
  43. package/node_modules/aws-sdk/clients/securityhub.d.ts +3 -3
  44. package/node_modules/aws-sdk/clients/ssm.d.ts +12 -12
  45. package/node_modules/aws-sdk/clients/transfer.d.ts +1000 -86
  46. package/node_modules/aws-sdk/clients/workspaces.d.ts +65 -5
  47. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  48. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +575 -568
  49. package/node_modules/aws-sdk/dist/aws-sdk.js +82 -24
  50. package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
  51. package/node_modules/aws-sdk/dist-tools/service-collector.js +4 -6
  52. package/node_modules/aws-sdk/lib/core.js +1 -1
  53. package/node_modules/aws-sdk/package.json +1 -1
  54. package/node_modules/esbuild/install.js +4 -4
  55. package/node_modules/esbuild/lib/main.d.ts +5 -1
  56. package/node_modules/esbuild/lib/main.js +13 -7
  57. package/node_modules/esbuild/package.json +21 -21
  58. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  59. package/node_modules/esbuild-linux-64/package.json +1 -1
  60. package/package.json +8 -8
@@ -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 URL. The only image format accepted is a binary data object that is converted from a .png file.
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
  }
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1181.0',
86
+ VERSION: '2.1184.0',
87
87
 
88
88
  /**
89
89
  * @api private