cdk-comprehend-s3olap 2.0.134 → 2.0.136

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 (32) hide show
  1. package/.jsii +3 -3
  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 +14 -1
  6. package/node_modules/aws-sdk/README.md +3 -1
  7. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +4 -9
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +1279 -275
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +17 -0
  10. package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +782 -113
  11. package/node_modules/aws-sdk/apis/datasync-2018-11-09.paginators.json +23 -0
  12. package/node_modules/aws-sdk/apis/ds-2015-04-16.min.json +8 -7
  13. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1234 -1215
  14. package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +183 -155
  15. package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.examples.json +98 -0
  16. package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +233 -23
  17. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +0 -12
  18. package/node_modules/aws-sdk/clients/codecatalyst.d.ts +11 -11
  19. package/node_modules/aws-sdk/clients/connect.d.ts +1119 -89
  20. package/node_modules/aws-sdk/clients/datasync.d.ts +857 -10
  21. package/node_modules/aws-sdk/clients/directoryservice.d.ts +7 -2
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +140 -115
  23. package/node_modules/aws-sdk/clients/mediaconvert.d.ts +67 -33
  24. package/node_modules/aws-sdk/clients/pinpoint.d.ts +208 -23
  25. package/node_modules/aws-sdk/clients/rekognition.d.ts +4 -4
  26. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  27. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  28. package/node_modules/aws-sdk/dist/aws-sdk.js +2542 -1502
  29. package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
  30. package/node_modules/aws-sdk/lib/core.js +1 -1
  31. package/node_modules/aws-sdk/package.json +1 -1
  32. package/package.json +3 -3
@@ -1406,6 +1406,7 @@ declare namespace DirectoryService {
1406
1406
  export type Description = string;
1407
1407
  export type DesiredNumberOfDomainControllers = number;
1408
1408
  export type DirectoryConfigurationSettingAllowedValues = string;
1409
+ export type DirectoryConfigurationSettingDataType = string;
1409
1410
  export type DirectoryConfigurationSettingLastRequestedDateTime = Date;
1410
1411
  export type DirectoryConfigurationSettingLastUpdatedDateTime = Date;
1411
1412
  export type DirectoryConfigurationSettingName = string;
@@ -2322,7 +2323,7 @@ declare namespace DirectoryService {
2322
2323
  export type SettingEntries = SettingEntry[];
2323
2324
  export interface SettingEntry {
2324
2325
  /**
2325
- * The type of directory setting. For example, Protocol or Cipher.
2326
+ * The type, or category, of a directory setting. Similar settings have the same type. For example, Protocol, Cipher, or Certificate-Based Authentication.
2326
2327
  */
2327
2328
  Type?: DirectoryConfigurationSettingType;
2328
2329
  /**
@@ -2330,7 +2331,7 @@ declare namespace DirectoryService {
2330
2331
  */
2331
2332
  Name?: DirectoryConfigurationSettingName;
2332
2333
  /**
2333
- * The valid range of values for the directory setting.
2334
+ * The valid range of values for the directory setting. These values depend on the DataType of your directory.
2334
2335
  */
2335
2336
  AllowedValues?: DirectoryConfigurationSettingAllowedValues;
2336
2337
  /**
@@ -2361,6 +2362,10 @@ declare namespace DirectoryService {
2361
2362
  * The date and time when the request to update a directory setting was last submitted.
2362
2363
  */
2363
2364
  LastRequestedDateTime?: DirectoryConfigurationSettingLastRequestedDateTime;
2365
+ /**
2366
+ * The data type of a directory setting. This is used to define the AllowedValues of a setting. For example a data type can be Boolean, DurationInSeconds, or Enum.
2367
+ */
2368
+ DataType?: DirectoryConfigurationSettingDataType;
2364
2369
  }
2365
2370
  export type Settings = Setting[];
2366
2371
  export interface ShareDirectoryRequest {