cdk-comprehend-s3olap 2.0.14 → 2.0.15
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 +3 -3
- 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/ec2-2016-11-15.min.json +11 -4
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +39 -22
- package/node_modules/aws-sdk/clients/ec2.d.ts +25 -5
- package/node_modules/aws-sdk/clients/ecs.d.ts +40 -40
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +28 -7
- 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 +14 -7
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +60 -60
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -236,11 +236,11 @@ declare class WellArchitected extends Service {
|
|
236
236
|
*/
|
237
237
|
listShareInvitations(callback?: (err: AWSError, data: WellArchitected.Types.ListShareInvitationsOutput) => void): Request<WellArchitected.Types.ListShareInvitationsOutput, AWSError>;
|
238
238
|
/**
|
239
|
-
* List the tags for a resource.
|
239
|
+
* List the tags for a resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.
|
240
240
|
*/
|
241
241
|
listTagsForResource(params: WellArchitected.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: WellArchitected.Types.ListTagsForResourceOutput) => void): Request<WellArchitected.Types.ListTagsForResourceOutput, AWSError>;
|
242
242
|
/**
|
243
|
-
* List the tags for a resource.
|
243
|
+
* List the tags for a resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.
|
244
244
|
*/
|
245
245
|
listTagsForResource(callback?: (err: AWSError, data: WellArchitected.Types.ListTagsForResourceOutput) => void): Request<WellArchitected.Types.ListTagsForResourceOutput, AWSError>;
|
246
246
|
/**
|
@@ -260,19 +260,19 @@ declare class WellArchitected extends Service {
|
|
260
260
|
*/
|
261
261
|
listWorkloads(callback?: (err: AWSError, data: WellArchitected.Types.ListWorkloadsOutput) => void): Request<WellArchitected.Types.ListWorkloadsOutput, AWSError>;
|
262
262
|
/**
|
263
|
-
* Adds one or more tags to the specified resource.
|
263
|
+
* Adds one or more tags to the specified resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.
|
264
264
|
*/
|
265
265
|
tagResource(params: WellArchitected.Types.TagResourceInput, callback?: (err: AWSError, data: WellArchitected.Types.TagResourceOutput) => void): Request<WellArchitected.Types.TagResourceOutput, AWSError>;
|
266
266
|
/**
|
267
|
-
* Adds one or more tags to the specified resource.
|
267
|
+
* Adds one or more tags to the specified resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN.
|
268
268
|
*/
|
269
269
|
tagResource(callback?: (err: AWSError, data: WellArchitected.Types.TagResourceOutput) => void): Request<WellArchitected.Types.TagResourceOutput, AWSError>;
|
270
270
|
/**
|
271
|
-
* Deletes specified tags from a resource. To specify multiple tags, use separate tagKeys parameters, for example: DELETE /tags/WorkloadArn?tagKeys=key1&tagKeys=key2
|
271
|
+
* Deletes specified tags from a resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN. To specify multiple tags, use separate tagKeys parameters, for example: DELETE /tags/WorkloadArn?tagKeys=key1&tagKeys=key2
|
272
272
|
*/
|
273
273
|
untagResource(params: WellArchitected.Types.UntagResourceInput, callback?: (err: AWSError, data: WellArchitected.Types.UntagResourceOutput) => void): Request<WellArchitected.Types.UntagResourceOutput, AWSError>;
|
274
274
|
/**
|
275
|
-
* Deletes specified tags from a resource. To specify multiple tags, use separate tagKeys parameters, for example: DELETE /tags/WorkloadArn?tagKeys=key1&tagKeys=key2
|
275
|
+
* Deletes specified tags from a resource. The WorkloadArn parameter can be either a workload ARN or a custom lens ARN. To specify multiple tags, use separate tagKeys parameters, for example: DELETE /tags/WorkloadArn?tagKeys=key1&tagKeys=key2
|
276
276
|
*/
|
277
277
|
untagResource(callback?: (err: AWSError, data: WellArchitected.Types.UntagResourceOutput) => void): Request<WellArchitected.Types.UntagResourceOutput, AWSError>;
|
278
278
|
/**
|
@@ -325,6 +325,18 @@ declare class WellArchitected extends Service {
|
|
325
325
|
upgradeLensReview(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
326
326
|
}
|
327
327
|
declare namespace WellArchitected {
|
328
|
+
export type AdditionalResourceType = "HELPFUL_RESOURCE"|"IMPROVEMENT_PLAN"|string;
|
329
|
+
export interface AdditionalResources {
|
330
|
+
/**
|
331
|
+
* Type of additional resource.
|
332
|
+
*/
|
333
|
+
Type?: AdditionalResourceType;
|
334
|
+
/**
|
335
|
+
* The URLs for additional resources, either helpful resources or improvement plans. Up to five additional URLs can be specified.
|
336
|
+
*/
|
337
|
+
Content?: Urls;
|
338
|
+
}
|
339
|
+
export type AdditionalResourcesList = AdditionalResources[];
|
328
340
|
export interface Answer {
|
329
341
|
QuestionId?: QuestionId;
|
330
342
|
PillarId?: PillarId;
|
@@ -388,6 +400,10 @@ declare namespace WellArchitected {
|
|
388
400
|
* The choice level improvement plan.
|
389
401
|
*/
|
390
402
|
ImprovementPlan?: ChoiceContent;
|
403
|
+
/**
|
404
|
+
* The additional resources for a choice. A choice can have up to two additional resources: one of type HELPFUL_RESOURCE, one of type IMPROVEMENT_PLAN, or both.
|
405
|
+
*/
|
406
|
+
AdditionalResources?: AdditionalResourcesList;
|
391
407
|
}
|
392
408
|
export interface ChoiceAnswer {
|
393
409
|
ChoiceId?: ChoiceId;
|
@@ -510,7 +526,7 @@ declare namespace WellArchitected {
|
|
510
526
|
NonAwsRegions?: WorkloadNonAwsRegions;
|
511
527
|
PillarPriorities?: WorkloadPillarPriorities;
|
512
528
|
ArchitecturalDesign?: WorkloadArchitecturalDesign;
|
513
|
-
ReviewOwner
|
529
|
+
ReviewOwner?: WorkloadReviewOwner;
|
514
530
|
IndustryType?: WorkloadIndustryType;
|
515
531
|
Industry?: WorkloadIndustry;
|
516
532
|
Lenses: WorkloadLenses;
|
@@ -729,6 +745,10 @@ declare namespace WellArchitected {
|
|
729
745
|
* The ID assigned to the share invitation.
|
730
746
|
*/
|
731
747
|
ShareInvitationId?: ShareInvitationId;
|
748
|
+
/**
|
749
|
+
* The tags assigned to the lens.
|
750
|
+
*/
|
751
|
+
Tags?: TagMap;
|
732
752
|
}
|
733
753
|
export type LensAlias = string;
|
734
754
|
export type LensAliases = LensAlias[];
|
@@ -1244,6 +1264,7 @@ declare namespace WellArchitected {
|
|
1244
1264
|
MilestoneName: MilestoneName;
|
1245
1265
|
ClientRequestToken?: ClientRequestToken;
|
1246
1266
|
}
|
1267
|
+
export type Urls = ChoiceContent[];
|
1247
1268
|
export interface VersionDifferences {
|
1248
1269
|
/**
|
1249
1270
|
* The differences between the base and latest versions of the lens.
|