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
@@ -1239,9 +1239,13 @@ declare namespace ES {
|
|
1239
1239
|
*/
|
1240
1240
|
VolumeSize?: IntegerClass;
|
1241
1241
|
/**
|
1242
|
-
* Specifies the
|
1242
|
+
* Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
|
1243
1243
|
*/
|
1244
1244
|
Iops?: IntegerClass;
|
1245
|
+
/**
|
1246
|
+
* Specifies the Throughput for GP3 EBS volume (SSD).
|
1247
|
+
*/
|
1248
|
+
Throughput?: IntegerClass;
|
1245
1249
|
}
|
1246
1250
|
export interface EBSOptionsStatus {
|
1247
1251
|
/**
|
@@ -2254,7 +2258,7 @@ declare namespace ES {
|
|
2254
2258
|
}
|
2255
2259
|
export interface StorageTypeLimit {
|
2256
2260
|
/**
|
2257
|
-
* Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
|
2261
|
+
* Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MaximumThroughput Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable. MinimumThroughput Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
|
2258
2262
|
*/
|
2259
2263
|
LimitName?: LimitName;
|
2260
2264
|
/**
|
@@ -2483,7 +2487,7 @@ declare namespace ES {
|
|
2483
2487
|
SecurityGroupIds?: StringList;
|
2484
2488
|
}
|
2485
2489
|
export type ValueStringList = NonEmptyString[];
|
2486
|
-
export type VolumeType = "standard"|"gp2"|"io1"|string;
|
2490
|
+
export type VolumeType = "standard"|"gp2"|"io1"|"gp3"|string;
|
2487
2491
|
export interface ZoneAwarenessConfig {
|
2488
2492
|
/**
|
2489
2493
|
* An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled
|
@@ -228,11 +228,11 @@ declare class FSx extends Service {
|
|
228
228
|
*/
|
229
229
|
disassociateFileSystemAliases(callback?: (err: AWSError, data: FSx.Types.DisassociateFileSystemAliasesResponse) => void): Request<FSx.Types.DisassociateFileSystemAliasesResponse, AWSError>;
|
230
230
|
/**
|
231
|
-
* Lists tags for
|
231
|
+
* Lists tags for Amazon FSx resources. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
|
232
232
|
*/
|
233
233
|
listTagsForResource(params: FSx.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: FSx.Types.ListTagsForResourceResponse) => void): Request<FSx.Types.ListTagsForResourceResponse, AWSError>;
|
234
234
|
/**
|
235
|
-
* Lists tags for
|
235
|
+
* Lists tags for Amazon FSx resources. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
|
236
236
|
*/
|
237
237
|
listTagsForResource(callback?: (err: AWSError, data: FSx.Types.ListTagsForResourceResponse) => void): Request<FSx.Types.ListTagsForResourceResponse, AWSError>;
|
238
238
|
/**
|
@@ -582,7 +582,7 @@ declare namespace FSx {
|
|
582
582
|
*/
|
583
583
|
Type: DataRepositoryTaskType;
|
584
584
|
/**
|
585
|
-
*
|
585
|
+
* A list of paths for the data repository task to use when the task is processed. If a path that you provide isn't valid, the task fails. For export tasks, the list contains paths on the Amazon FSx file system from which the files are exported to the Amazon S3 bucket. The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system. If the mount point is /mnt/fsx and /mnt/fsx/path1 is a directory or file on the file system you want to export, then the path to provide is path1. For import tasks, the list contains paths in the Amazon S3 bucket from which POSIX metadata changes are imported to the Amazon FSx file system. The path can be an S3 bucket or prefix in the format s3://myBucket/myPrefix (where myPrefix is optional).
|
586
586
|
*/
|
587
587
|
Paths?: DataRepositoryTaskPaths;
|
588
588
|
FileSystemId: FileSystemId;
|
@@ -734,7 +734,7 @@ declare namespace FSx {
|
|
734
734
|
*/
|
735
735
|
CopyTagsToBackups?: Flag;
|
736
736
|
/**
|
737
|
-
* A Boolean value indicating whether tags for the
|
737
|
+
* A Boolean value indicating whether tags for the file system should be copied to volumes. This value defaults to false. If it's set to true, all tags for the file system are copied to volumes where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to volumes. If you specify one or more tags when creating the volume, no tags are copied from the file system, regardless of this value.
|
738
738
|
*/
|
739
739
|
CopyTagsToVolumes?: Flag;
|
740
740
|
DailyAutomaticBackupStartTime?: DailyTime;
|