cdk-comprehend-s3olap 2.0.63 → 2.0.64
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 +4 -4
- 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 +5 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dlm-2018-01-12.min.json +15 -9
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +627 -623
- package/node_modules/aws-sdk/clients/dlm.d.ts +30 -25
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -0
- 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 +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.js +630 -626
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +63 -63
- 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.js +7 -7
- package/node_modules/esbuild/package.json +22 -22
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -126,7 +126,7 @@ declare namespace DLM {
|
|
126
126
|
}
|
127
127
|
export interface CreateRule {
|
128
128
|
/**
|
129
|
-
* Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default. If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
|
129
|
+
* [Snapshot policies only] Specifies the destination for snapshots created by the policy. To create snapshots in the same Region as the source resource, specify CLOUD. To create snapshots on the same Outpost as the source resource, specify OUTPOST_LOCAL. If you omit this parameter, CLOUD is used by default. If the policy targets resources in an Amazon Web Services Region, then you must create snapshots in the same Region as the source resource. If the policy targets resources on an Outpost, then you can create snapshots on the same Outpost as the source resource, or in the Region of that Outpost.
|
130
130
|
*/
|
131
131
|
Location?: LocationValues;
|
132
132
|
/**
|
@@ -165,23 +165,23 @@ declare namespace DLM {
|
|
165
165
|
*/
|
166
166
|
Interval?: Interval;
|
167
167
|
/**
|
168
|
-
* The unit of time in which to measure the Interval.
|
168
|
+
* The unit of time in which to measure the Interval. For example, to deprecate a cross-Region AMI copy after 3 months, specify Interval=3 and IntervalUnit=MONTHS.
|
169
169
|
*/
|
170
170
|
IntervalUnit?: RetentionIntervalUnitValues;
|
171
171
|
}
|
172
172
|
export interface CrossRegionCopyRetainRule {
|
173
173
|
/**
|
174
|
-
* The amount of time to retain
|
174
|
+
* The amount of time to retain a cross-Region snapshot or AMI copy. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.
|
175
175
|
*/
|
176
176
|
Interval?: Interval;
|
177
177
|
/**
|
178
|
-
* The unit of time for time-based retention.
|
178
|
+
* The unit of time for time-based retention. For example, to retain a cross-Region copy for 3 months, specify Interval=3 and IntervalUnit=MONTHS.
|
179
179
|
*/
|
180
180
|
IntervalUnit?: RetentionIntervalUnitValues;
|
181
181
|
}
|
182
182
|
export interface CrossRegionCopyRule {
|
183
183
|
/**
|
184
|
-
*
|
184
|
+
* Avoid using this parameter when creating new policies. Instead, use Target to specify a target Region or a target Outpost for snapshot copies. For policies created before the Target parameter was introduced, this parameter indicates the target Region for snapshot copies.
|
185
185
|
*/
|
186
186
|
TargetRegion?: TargetRegion;
|
187
187
|
/**
|
@@ -197,15 +197,15 @@ declare namespace DLM {
|
|
197
197
|
*/
|
198
198
|
CmkArn?: CmkArn;
|
199
199
|
/**
|
200
|
-
* Indicates whether to copy all user-defined tags from the source snapshot to the cross-Region
|
200
|
+
* Indicates whether to copy all user-defined tags from the source snapshot or AMI to the cross-Region copy.
|
201
201
|
*/
|
202
202
|
CopyTags?: CopyTagsNullable;
|
203
203
|
/**
|
204
|
-
* The retention rule that indicates how long snapshot copies are to be retained in the destination Region.
|
204
|
+
* The retention rule that indicates how long the cross-Region snapshot or AMI copies are to be retained in the destination Region.
|
205
205
|
*/
|
206
206
|
RetainRule?: CrossRegionCopyRetainRule;
|
207
207
|
/**
|
208
|
-
* The AMI deprecation rule for cross-Region AMI copies created by the rule.
|
208
|
+
* [AMI policies only] The AMI deprecation rule for cross-Region AMI copies created by the rule.
|
209
209
|
*/
|
210
210
|
DeprecateRule?: CrossRegionCopyDeprecateRule;
|
211
211
|
}
|
@@ -271,6 +271,7 @@ declare namespace DLM {
|
|
271
271
|
export type EventSourceValues = "MANAGED_CWE"|string;
|
272
272
|
export type EventTypeValues = "shareSnapshot"|string;
|
273
273
|
export type ExcludeBootVolume = boolean;
|
274
|
+
export type ExcludeDataVolumeTagList = Tag[];
|
274
275
|
export type ExecutionRoleArn = string;
|
275
276
|
export interface FastRestoreRule {
|
276
277
|
/**
|
@@ -393,7 +394,7 @@ declare namespace DLM {
|
|
393
394
|
*/
|
394
395
|
Tags?: TagMap;
|
395
396
|
/**
|
396
|
-
* The type of policy. EBS_SNAPSHOT_MANAGEMENT indicates that the policy manages the lifecycle of Amazon EBS snapshots. IMAGE_MANAGEMENT indicates that the policy manages the lifecycle of EBS-backed AMIs.
|
397
|
+
* The type of policy. EBS_SNAPSHOT_MANAGEMENT indicates that the policy manages the lifecycle of Amazon EBS snapshots. IMAGE_MANAGEMENT indicates that the policy manages the lifecycle of EBS-backed AMIs. EVENT_BASED_POLICY indicates that the policy automates cross-account snapshot copies for snapshots that are shared with your account.
|
397
398
|
*/
|
398
399
|
PolicyType?: PolicyTypeValues;
|
399
400
|
}
|
@@ -414,47 +415,51 @@ declare namespace DLM {
|
|
414
415
|
export type NoReboot = boolean;
|
415
416
|
export interface Parameters {
|
416
417
|
/**
|
417
|
-
*
|
418
|
+
* [Snapshot policies that target instances only] Indicates whether to exclude the root volume from multi-volume snapshot sets. The default is false. If you specify true, then the root volumes attached to targeted instances will be excluded from the multi-volume snapshot sets created by the policy.
|
418
419
|
*/
|
419
420
|
ExcludeBootVolume?: ExcludeBootVolume;
|
420
421
|
/**
|
421
|
-
*
|
422
|
+
* [AMI policies only] Indicates whether targeted instances are rebooted when the lifecycle policy runs. true indicates that targeted instances are not rebooted when the policy runs. false indicates that target instances are rebooted when the policy runs. The default is true (instances are not rebooted).
|
422
423
|
*/
|
423
424
|
NoReboot?: NoReboot;
|
425
|
+
/**
|
426
|
+
* [Snapshot policies that target instances only] The tags used to identify data (non-root) volumes to exclude from multi-volume snapshot sets. If you create a snapshot lifecycle policy that targets instances and you specify tags for this parameter, then data volumes with the specified tags that are attached to targeted instances will be excluded from the multi-volume snapshot sets created by the policy.
|
427
|
+
*/
|
428
|
+
ExcludeDataVolumeTags?: ExcludeDataVolumeTagList;
|
424
429
|
}
|
425
430
|
export type PolicyArn = string;
|
426
431
|
export type PolicyDescription = string;
|
427
432
|
export interface PolicyDetails {
|
428
433
|
/**
|
429
|
-
* The valid target resource types and actions a policy can manage. Specify EBS_SNAPSHOT_MANAGEMENT to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify IMAGE_MANAGEMENT to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify EVENT_BASED_POLICY to create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account. The default is EBS_SNAPSHOT_MANAGEMENT.
|
434
|
+
* [All policy types] The valid target resource types and actions a policy can manage. Specify EBS_SNAPSHOT_MANAGEMENT to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify IMAGE_MANAGEMENT to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. Specify EVENT_BASED_POLICY to create an event-based policy that performs specific actions when a defined event occurs in your Amazon Web Services account. The default is EBS_SNAPSHOT_MANAGEMENT.
|
430
435
|
*/
|
431
436
|
PolicyType?: PolicyTypeValues;
|
432
437
|
/**
|
433
|
-
* The target resource type for snapshot and AMI lifecycle policies. Use VOLUME to create snapshots of individual volumes or use INSTANCE to create multi-volume snapshots from the volumes for an instance.
|
438
|
+
* [Snapshot policies only] The target resource type for snapshot and AMI lifecycle policies. Use VOLUME to create snapshots of individual volumes or use INSTANCE to create multi-volume snapshots from the volumes for an instance.
|
434
439
|
*/
|
435
440
|
ResourceTypes?: ResourceTypeValuesList;
|
436
441
|
/**
|
437
|
-
* The location of the resources to backup. If the source resources are located in an Amazon Web Services Region, specify CLOUD. If the source resources are located on an Outpost in your account, specify OUTPOST.
|
442
|
+
* [Snapshot and AMI policies only] The location of the resources to backup. If the source resources are located in an Amazon Web Services Region, specify CLOUD. If the source resources are located on an Outpost in your account, specify OUTPOST. If you specify OUTPOST, Amazon Data Lifecycle Manager backs up all resources of the specified type with matching target tags across all of the Outposts in your account.
|
438
443
|
*/
|
439
444
|
ResourceLocations?: ResourceLocationList;
|
440
445
|
/**
|
441
|
-
* The single tag that identifies targeted resources for this policy.
|
446
|
+
* [Snapshot and AMI policies only] The single tag that identifies targeted resources for this policy.
|
442
447
|
*/
|
443
448
|
TargetTags?: TargetTagList;
|
444
449
|
/**
|
445
|
-
* The schedules of policy-defined actions for snapshot and AMI lifecycle policies. A policy can have up to four schedules—one mandatory schedule and up to three optional schedules.
|
450
|
+
* [Snapshot and AMI policies only] The schedules of policy-defined actions for snapshot and AMI lifecycle policies. A policy can have up to four schedules—one mandatory schedule and up to three optional schedules.
|
446
451
|
*/
|
447
452
|
Schedules?: ScheduleList;
|
448
453
|
/**
|
449
|
-
* A set of optional parameters for snapshot and AMI lifecycle policies.
|
454
|
+
* [Snapshot and AMI policies only] A set of optional parameters for snapshot and AMI lifecycle policies. If you are modifying a policy that was created or previously modified using the Amazon Data Lifecycle Manager console, then you must include this parameter and specify either the default values or the new values that you require. You can't omit this parameter or set its values to null.
|
450
455
|
*/
|
451
456
|
Parameters?: Parameters;
|
452
457
|
/**
|
453
|
-
* The event that
|
458
|
+
* [Event-based policies only] The event that activates the event-based policy.
|
454
459
|
*/
|
455
460
|
EventSource?: EventSource;
|
456
461
|
/**
|
457
|
-
* The actions to be performed when the event-based policy is
|
462
|
+
* [Event-based policies only] The actions to be performed when the event-based policy is activated. You can specify only one action per policy.
|
458
463
|
*/
|
459
464
|
Actions?: ActionList;
|
460
465
|
}
|
@@ -494,7 +499,7 @@ declare namespace DLM {
|
|
494
499
|
*/
|
495
500
|
TagsToAdd?: TagsToAddList;
|
496
501
|
/**
|
497
|
-
* A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.
|
502
|
+
* [AMI policies and snapshot policies that target instances only] A collection of key/value pairs with values determined dynamically when the policy is executed. Keys may be any valid Amazon EC2 tag key. Values must be in one of the two following formats: $(instance-id) or $(timestamp). Variable tags are only valid for EBS Snapshot Management – Instance policies.
|
498
503
|
*/
|
499
504
|
VariableTags?: VariableTagsList;
|
500
505
|
/**
|
@@ -502,23 +507,23 @@ declare namespace DLM {
|
|
502
507
|
*/
|
503
508
|
CreateRule?: CreateRule;
|
504
509
|
/**
|
505
|
-
* The retention rule.
|
510
|
+
* The retention rule for snapshots or AMIs created by the policy.
|
506
511
|
*/
|
507
512
|
RetainRule?: RetainRule;
|
508
513
|
/**
|
509
|
-
* The rule for enabling fast snapshot restore.
|
514
|
+
* [Snapshot policies only] The rule for enabling fast snapshot restore.
|
510
515
|
*/
|
511
516
|
FastRestoreRule?: FastRestoreRule;
|
512
517
|
/**
|
513
|
-
*
|
518
|
+
* Specifies a rule for copying snapshots or AMIs across regions. You can't specify cross-Region copy rules for policies that create snapshots on an Outpost. If the policy creates snapshots in a Region, then snapshots can be copied to up to three Regions or Outposts.
|
514
519
|
*/
|
515
520
|
CrossRegionCopyRules?: CrossRegionCopyRules;
|
516
521
|
/**
|
517
|
-
* The rule for sharing snapshots with other Amazon Web Services accounts.
|
522
|
+
* [Snapshot policies only] The rule for sharing snapshots with other Amazon Web Services accounts.
|
518
523
|
*/
|
519
524
|
ShareRules?: ShareRules;
|
520
525
|
/**
|
521
|
-
* The AMI deprecation rule for the schedule.
|
526
|
+
* [AMI policies only] The AMI deprecation rule for the schedule.
|
522
527
|
*/
|
523
528
|
DeprecateRule?: DeprecateRule;
|
524
529
|
}
|
@@ -21498,6 +21498,7 @@ declare namespace EC2 {
|
|
21498
21498
|
* Excludes the root volume from being snapshotted.
|
21499
21499
|
*/
|
21500
21500
|
ExcludeBootVolume?: Boolean;
|
21501
|
+
ExcludeDataVolumeIds?: VolumeIdStringList;
|
21501
21502
|
}
|
21502
21503
|
export interface InstanceState {
|
21503
21504
|
/**
|