cdk-lambda-subminute 2.0.366 → 2.0.367
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +126 -90
- package/node_modules/aws-sdk/clients/datazone.d.ts +52 -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 +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -2309,6 +2309,10 @@ declare namespace DataZone {
|
|
2309
2309
|
* The identifier of the Amazon DataZone domain in which the project was created.
|
2310
2310
|
*/
|
2311
2311
|
domainId: DomainId;
|
2312
|
+
/**
|
2313
|
+
* Reasons for failed project deletion
|
2314
|
+
*/
|
2315
|
+
failureReasons?: FailureReasons;
|
2312
2316
|
/**
|
2313
2317
|
* The glossary terms that can be used in the project.
|
2314
2318
|
*/
|
@@ -2325,6 +2329,10 @@ declare namespace DataZone {
|
|
2325
2329
|
* The name of the project.
|
2326
2330
|
*/
|
2327
2331
|
name: ProjectName;
|
2332
|
+
/**
|
2333
|
+
* Status of the project
|
2334
|
+
*/
|
2335
|
+
projectStatus?: ProjectStatus;
|
2328
2336
|
}
|
2329
2337
|
export interface CreateSubscriptionGrantInput {
|
2330
2338
|
/**
|
@@ -3003,6 +3011,10 @@ declare namespace DataZone {
|
|
3003
3011
|
* The identifier of the Amazon Web Services domain that is to be deleted.
|
3004
3012
|
*/
|
3005
3013
|
identifier: DomainId;
|
3014
|
+
/**
|
3015
|
+
* Optional flag to delete all child entities within the domain
|
3016
|
+
*/
|
3017
|
+
skipDeletionCheck?: Boolean;
|
3006
3018
|
}
|
3007
3019
|
export interface DeleteDomainOutput {
|
3008
3020
|
/**
|
@@ -3099,6 +3111,10 @@ declare namespace DataZone {
|
|
3099
3111
|
* The identifier of the project that is to be deleted.
|
3100
3112
|
*/
|
3101
3113
|
identifier: ProjectId;
|
3114
|
+
/**
|
3115
|
+
* Optional flag to asynchronously delete child entities within the project
|
3116
|
+
*/
|
3117
|
+
skipDeletionCheck?: Boolean;
|
3102
3118
|
}
|
3103
3119
|
export interface DeleteProjectMembershipInput {
|
3104
3120
|
/**
|
@@ -3503,6 +3519,7 @@ declare namespace DataZone {
|
|
3503
3519
|
*/
|
3504
3520
|
message?: String;
|
3505
3521
|
}
|
3522
|
+
export type FailureReasons = ProjectDeletionError[];
|
3506
3523
|
export interface Filter {
|
3507
3524
|
/**
|
3508
3525
|
* A search filter attribute in Amazon DataZone.
|
@@ -4591,6 +4608,10 @@ declare namespace DataZone {
|
|
4591
4608
|
* The ID of the Amazon DataZone domain in which the project exists.
|
4592
4609
|
*/
|
4593
4610
|
domainId: DomainId;
|
4611
|
+
/**
|
4612
|
+
* Reasons for failed project deletion
|
4613
|
+
*/
|
4614
|
+
failureReasons?: FailureReasons;
|
4594
4615
|
/**
|
4595
4616
|
* The business glossary terms that can be used in the project.
|
4596
4617
|
*/
|
@@ -4607,6 +4628,10 @@ declare namespace DataZone {
|
|
4607
4628
|
* The name of the project.
|
4608
4629
|
*/
|
4609
4630
|
name: ProjectName;
|
4631
|
+
/**
|
4632
|
+
* Status of the project
|
4633
|
+
*/
|
4634
|
+
projectStatus?: ProjectStatus;
|
4610
4635
|
}
|
4611
4636
|
export interface GetSubscriptionGrantInput {
|
4612
4637
|
/**
|
@@ -5849,6 +5874,16 @@ declare namespace DataZone {
|
|
5849
5874
|
*/
|
5850
5875
|
businessNameGeneration?: BusinessNameGenerationConfiguration;
|
5851
5876
|
}
|
5877
|
+
export interface ProjectDeletionError {
|
5878
|
+
/**
|
5879
|
+
* Project Deletion Error Code
|
5880
|
+
*/
|
5881
|
+
code?: String;
|
5882
|
+
/**
|
5883
|
+
* Project Deletion Error Message
|
5884
|
+
*/
|
5885
|
+
message?: String;
|
5886
|
+
}
|
5852
5887
|
export type ProjectId = string;
|
5853
5888
|
export interface ProjectMember {
|
5854
5889
|
/**
|
@@ -5862,6 +5897,7 @@ declare namespace DataZone {
|
|
5862
5897
|
}
|
5863
5898
|
export type ProjectMembers = ProjectMember[];
|
5864
5899
|
export type ProjectName = string;
|
5900
|
+
export type ProjectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED"|string;
|
5865
5901
|
export type ProjectSummaries = ProjectSummary[];
|
5866
5902
|
export interface ProjectSummary {
|
5867
5903
|
/**
|
@@ -5880,6 +5916,10 @@ declare namespace DataZone {
|
|
5880
5916
|
* The identifier of a Amazon DataZone domain where the project exists.
|
5881
5917
|
*/
|
5882
5918
|
domainId: DomainId;
|
5919
|
+
/**
|
5920
|
+
* Reasons for failed project deletion
|
5921
|
+
*/
|
5922
|
+
failureReasons?: FailureReasons;
|
5883
5923
|
/**
|
5884
5924
|
* The identifier of a project.
|
5885
5925
|
*/
|
@@ -5888,6 +5928,10 @@ declare namespace DataZone {
|
|
5888
5928
|
* The name of a project.
|
5889
5929
|
*/
|
5890
5930
|
name: ProjectName;
|
5931
|
+
/**
|
5932
|
+
* Status of the project
|
5933
|
+
*/
|
5934
|
+
projectStatus?: ProjectStatus;
|
5891
5935
|
/**
|
5892
5936
|
* The timestamp of when the project was updated.
|
5893
5937
|
*/
|
@@ -7638,6 +7682,10 @@ declare namespace DataZone {
|
|
7638
7682
|
* The identifier of the Amazon DataZone domain in which a project is updated.
|
7639
7683
|
*/
|
7640
7684
|
domainId: DomainId;
|
7685
|
+
/**
|
7686
|
+
* Reasons for failed project deletion
|
7687
|
+
*/
|
7688
|
+
failureReasons?: FailureReasons;
|
7641
7689
|
/**
|
7642
7690
|
* The glossary terms of the project that are to be updated.
|
7643
7691
|
*/
|
@@ -7654,6 +7702,10 @@ declare namespace DataZone {
|
|
7654
7702
|
* The name of the project that is to be updated.
|
7655
7703
|
*/
|
7656
7704
|
name: ProjectName;
|
7705
|
+
/**
|
7706
|
+
* Status of the project
|
7707
|
+
*/
|
7708
|
+
projectStatus?: ProjectStatus;
|
7657
7709
|
}
|
7658
7710
|
export interface UpdateSubscriptionGrantStatusInput {
|
7659
7711
|
/**
|