cdk-lambda-subminute 2.0.462 → 2.0.464
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-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +53 -21
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +174 -159
- package/node_modules/aws-sdk/apis/cost-optimization-hub-2022-07-26.min.json +10 -0
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.min.json +1000 -509
- package/node_modules/aws-sdk/apis/datazone-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ecr-2015-09-21.min.json +44 -6
- package/node_modules/aws-sdk/apis/kinesis-video-webrtc-storage-2018-05-10.min.json +17 -0
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +51 -11
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +49 -23
- package/node_modules/aws-sdk/clients/costoptimizationhub.d.ts +22 -6
- package/node_modules/aws-sdk/clients/datazone.d.ts +616 -9
- package/node_modules/aws-sdk/clients/ecr.d.ts +57 -3
- package/node_modules/aws-sdk/clients/kinesisvideowebrtcstorage.d.ts +21 -2
- package/node_modules/aws-sdk/clients/pi.d.ts +1 -1
- package/node_modules/aws-sdk/clients/workspaces.d.ts +2 -2
- 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 +8 -8
- package/node_modules/aws-sdk/dist/aws-sdk.js +221 -168
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +90 -90
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
@@ -83,6 +83,22 @@ declare class DataZone extends Service {
|
|
83
83
|
* Creates a custom asset type.
|
84
84
|
*/
|
85
85
|
createAssetType(callback?: (err: AWSError, data: DataZone.Types.CreateAssetTypeOutput) => void): Request<DataZone.Types.CreateAssetTypeOutput, AWSError>;
|
86
|
+
/**
|
87
|
+
* Creates a data product.
|
88
|
+
*/
|
89
|
+
createDataProduct(params: DataZone.Types.CreateDataProductInput, callback?: (err: AWSError, data: DataZone.Types.CreateDataProductOutput) => void): Request<DataZone.Types.CreateDataProductOutput, AWSError>;
|
90
|
+
/**
|
91
|
+
* Creates a data product.
|
92
|
+
*/
|
93
|
+
createDataProduct(callback?: (err: AWSError, data: DataZone.Types.CreateDataProductOutput) => void): Request<DataZone.Types.CreateDataProductOutput, AWSError>;
|
94
|
+
/**
|
95
|
+
* Creates a data product revision.
|
96
|
+
*/
|
97
|
+
createDataProductRevision(params: DataZone.Types.CreateDataProductRevisionInput, callback?: (err: AWSError, data: DataZone.Types.CreateDataProductRevisionOutput) => void): Request<DataZone.Types.CreateDataProductRevisionOutput, AWSError>;
|
98
|
+
/**
|
99
|
+
* Creates a data product revision.
|
100
|
+
*/
|
101
|
+
createDataProductRevision(callback?: (err: AWSError, data: DataZone.Types.CreateDataProductRevisionOutput) => void): Request<DataZone.Types.CreateDataProductRevisionOutput, AWSError>;
|
86
102
|
/**
|
87
103
|
* Creates an Amazon DataZone data source.
|
88
104
|
*/
|
@@ -212,11 +228,11 @@ declare class DataZone extends Service {
|
|
212
228
|
*/
|
213
229
|
createUserProfile(callback?: (err: AWSError, data: DataZone.Types.CreateUserProfileOutput) => void): Request<DataZone.Types.CreateUserProfileOutput, AWSError>;
|
214
230
|
/**
|
215
|
-
*
|
231
|
+
* Deletes an asset in Amazon DataZone.
|
216
232
|
*/
|
217
233
|
deleteAsset(params: DataZone.Types.DeleteAssetInput, callback?: (err: AWSError, data: DataZone.Types.DeleteAssetOutput) => void): Request<DataZone.Types.DeleteAssetOutput, AWSError>;
|
218
234
|
/**
|
219
|
-
*
|
235
|
+
* Deletes an asset in Amazon DataZone.
|
220
236
|
*/
|
221
237
|
deleteAsset(callback?: (err: AWSError, data: DataZone.Types.DeleteAssetOutput) => void): Request<DataZone.Types.DeleteAssetOutput, AWSError>;
|
222
238
|
/**
|
@@ -235,6 +251,14 @@ declare class DataZone extends Service {
|
|
235
251
|
* Deletes an asset type in Amazon DataZone.
|
236
252
|
*/
|
237
253
|
deleteAssetType(callback?: (err: AWSError, data: DataZone.Types.DeleteAssetTypeOutput) => void): Request<DataZone.Types.DeleteAssetTypeOutput, AWSError>;
|
254
|
+
/**
|
255
|
+
* Deletes an data product in Amazon DataZone.
|
256
|
+
*/
|
257
|
+
deleteDataProduct(params: DataZone.Types.DeleteDataProductInput, callback?: (err: AWSError, data: DataZone.Types.DeleteDataProductOutput) => void): Request<DataZone.Types.DeleteDataProductOutput, AWSError>;
|
258
|
+
/**
|
259
|
+
* Deletes an data product in Amazon DataZone.
|
260
|
+
*/
|
261
|
+
deleteDataProduct(callback?: (err: AWSError, data: DataZone.Types.DeleteDataProductOutput) => void): Request<DataZone.Types.DeleteDataProductOutput, AWSError>;
|
238
262
|
/**
|
239
263
|
* Deletes a data source in Amazon DataZone.
|
240
264
|
*/
|
@@ -395,6 +419,14 @@ declare class DataZone extends Service {
|
|
395
419
|
* Gets an Amazon DataZone asset type.
|
396
420
|
*/
|
397
421
|
getAssetType(callback?: (err: AWSError, data: DataZone.Types.GetAssetTypeOutput) => void): Request<DataZone.Types.GetAssetTypeOutput, AWSError>;
|
422
|
+
/**
|
423
|
+
* Gets the data product.
|
424
|
+
*/
|
425
|
+
getDataProduct(params: DataZone.Types.GetDataProductInput, callback?: (err: AWSError, data: DataZone.Types.GetDataProductOutput) => void): Request<DataZone.Types.GetDataProductOutput, AWSError>;
|
426
|
+
/**
|
427
|
+
* Gets the data product.
|
428
|
+
*/
|
429
|
+
getDataProduct(callback?: (err: AWSError, data: DataZone.Types.GetDataProductOutput) => void): Request<DataZone.Types.GetDataProductOutput, AWSError>;
|
398
430
|
/**
|
399
431
|
* Gets an Amazon DataZone data source.
|
400
432
|
*/
|
@@ -516,11 +548,11 @@ declare class DataZone extends Service {
|
|
516
548
|
*/
|
517
549
|
getLineageNode(callback?: (err: AWSError, data: DataZone.Types.GetLineageNodeOutput) => void): Request<DataZone.Types.GetLineageNodeOutput, AWSError>;
|
518
550
|
/**
|
519
|
-
* Gets a listing (a record of an asset at a given time).
|
551
|
+
* Gets a listing (a record of an asset at a given time). If you specify a listing version, only details that are specific to that version are returned.
|
520
552
|
*/
|
521
553
|
getListing(params: DataZone.Types.GetListingInput, callback?: (err: AWSError, data: DataZone.Types.GetListingOutput) => void): Request<DataZone.Types.GetListingOutput, AWSError>;
|
522
554
|
/**
|
523
|
-
* Gets a listing (a record of an asset at a given time).
|
555
|
+
* Gets a listing (a record of an asset at a given time). If you specify a listing version, only details that are specific to that version are returned.
|
524
556
|
*/
|
525
557
|
getListing(callback?: (err: AWSError, data: DataZone.Types.GetListingOutput) => void): Request<DataZone.Types.GetListingOutput, AWSError>;
|
526
558
|
/**
|
@@ -603,6 +635,14 @@ declare class DataZone extends Service {
|
|
603
635
|
* Lists the revisions for the asset.
|
604
636
|
*/
|
605
637
|
listAssetRevisions(callback?: (err: AWSError, data: DataZone.Types.ListAssetRevisionsOutput) => void): Request<DataZone.Types.ListAssetRevisionsOutput, AWSError>;
|
638
|
+
/**
|
639
|
+
* Lists data product revisions.
|
640
|
+
*/
|
641
|
+
listDataProductRevisions(params: DataZone.Types.ListDataProductRevisionsInput, callback?: (err: AWSError, data: DataZone.Types.ListDataProductRevisionsOutput) => void): Request<DataZone.Types.ListDataProductRevisionsOutput, AWSError>;
|
642
|
+
/**
|
643
|
+
* Lists data product revisions.
|
644
|
+
*/
|
645
|
+
listDataProductRevisions(callback?: (err: AWSError, data: DataZone.Types.ListDataProductRevisionsOutput) => void): Request<DataZone.Types.ListDataProductRevisionsOutput, AWSError>;
|
606
646
|
/**
|
607
647
|
* Lists data source run activities.
|
608
648
|
*/
|
@@ -1192,6 +1232,21 @@ declare namespace DataZone {
|
|
1192
1232
|
export type AssetFilters = AssetFilterSummary[];
|
1193
1233
|
export type AssetId = string;
|
1194
1234
|
export type AssetIdentifier = string;
|
1235
|
+
export interface AssetInDataProductListingItem {
|
1236
|
+
/**
|
1237
|
+
* The entity ID of the listing of the asset in a data product.
|
1238
|
+
*/
|
1239
|
+
entityId?: String;
|
1240
|
+
/**
|
1241
|
+
* The entity revision of the listing of the asset in a data product.
|
1242
|
+
*/
|
1243
|
+
entityRevision?: String;
|
1244
|
+
/**
|
1245
|
+
* The entity type of the listing of the asset in a data product.
|
1246
|
+
*/
|
1247
|
+
entityType?: String;
|
1248
|
+
}
|
1249
|
+
export type AssetInDataProductListingItems = AssetInDataProductListingItem[];
|
1195
1250
|
export interface AssetItem {
|
1196
1251
|
/**
|
1197
1252
|
* The additional attributes of a Amazon DataZone inventory asset.
|
@@ -1986,6 +2041,190 @@ declare namespace DataZone {
|
|
1986
2041
|
*/
|
1987
2042
|
updatedBy?: UpdatedBy;
|
1988
2043
|
}
|
2044
|
+
export interface CreateDataProductInput {
|
2045
|
+
/**
|
2046
|
+
* A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
2047
|
+
*/
|
2048
|
+
clientToken?: ClientToken;
|
2049
|
+
/**
|
2050
|
+
* The description of the data product.
|
2051
|
+
*/
|
2052
|
+
description?: DataProductDescription;
|
2053
|
+
/**
|
2054
|
+
* The ID of the domain where the data product is created.
|
2055
|
+
*/
|
2056
|
+
domainIdentifier: DomainId;
|
2057
|
+
/**
|
2058
|
+
* The metadata forms of the data product.
|
2059
|
+
*/
|
2060
|
+
formsInput?: FormInputList;
|
2061
|
+
/**
|
2062
|
+
* The glossary terms of the data product.
|
2063
|
+
*/
|
2064
|
+
glossaryTerms?: GlossaryTerms;
|
2065
|
+
/**
|
2066
|
+
* The data assets of the data product.
|
2067
|
+
*/
|
2068
|
+
items?: DataProductItems;
|
2069
|
+
/**
|
2070
|
+
* The name of the data product.
|
2071
|
+
*/
|
2072
|
+
name: DataProductName;
|
2073
|
+
/**
|
2074
|
+
* The ID of the owning project of the data product.
|
2075
|
+
*/
|
2076
|
+
owningProjectIdentifier: ProjectId;
|
2077
|
+
}
|
2078
|
+
export interface CreateDataProductOutput {
|
2079
|
+
/**
|
2080
|
+
* The timestamp at which the data product was created.
|
2081
|
+
*/
|
2082
|
+
createdAt?: CreatedAt;
|
2083
|
+
/**
|
2084
|
+
* The user who created the data product.
|
2085
|
+
*/
|
2086
|
+
createdBy?: CreatedBy;
|
2087
|
+
/**
|
2088
|
+
* The description of the data product.
|
2089
|
+
*/
|
2090
|
+
description?: DataProductDescription;
|
2091
|
+
/**
|
2092
|
+
* The ID of the domain where the data product lives.
|
2093
|
+
*/
|
2094
|
+
domainId: DomainId;
|
2095
|
+
/**
|
2096
|
+
* The timestamp at which the first revision of the data product was created.
|
2097
|
+
*/
|
2098
|
+
firstRevisionCreatedAt?: CreatedAt;
|
2099
|
+
/**
|
2100
|
+
* The user who created the first revision of the data product.
|
2101
|
+
*/
|
2102
|
+
firstRevisionCreatedBy?: CreatedBy;
|
2103
|
+
/**
|
2104
|
+
* The metadata forms of the data product.
|
2105
|
+
*/
|
2106
|
+
formsOutput?: FormOutputList;
|
2107
|
+
/**
|
2108
|
+
* The glossary terms of the data product.
|
2109
|
+
*/
|
2110
|
+
glossaryTerms?: GlossaryTerms;
|
2111
|
+
/**
|
2112
|
+
* The ID of the data product.
|
2113
|
+
*/
|
2114
|
+
id: DataProductId;
|
2115
|
+
/**
|
2116
|
+
* The data assets of the data product.
|
2117
|
+
*/
|
2118
|
+
items?: DataProductItems;
|
2119
|
+
/**
|
2120
|
+
* The name of the data product.
|
2121
|
+
*/
|
2122
|
+
name: DataProductName;
|
2123
|
+
/**
|
2124
|
+
* The ID of the owning project of the data product.
|
2125
|
+
*/
|
2126
|
+
owningProjectId: ProjectId;
|
2127
|
+
/**
|
2128
|
+
* The revision of the data product.
|
2129
|
+
*/
|
2130
|
+
revision: Revision;
|
2131
|
+
/**
|
2132
|
+
* The status of the data product.
|
2133
|
+
*/
|
2134
|
+
status: DataProductStatus;
|
2135
|
+
}
|
2136
|
+
export interface CreateDataProductRevisionInput {
|
2137
|
+
/**
|
2138
|
+
* A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
2139
|
+
*/
|
2140
|
+
clientToken?: ClientToken;
|
2141
|
+
/**
|
2142
|
+
* The description of the data product revision.
|
2143
|
+
*/
|
2144
|
+
description?: DataProductDescription;
|
2145
|
+
/**
|
2146
|
+
* The ID of the domain where the data product revision is created.
|
2147
|
+
*/
|
2148
|
+
domainIdentifier: DomainId;
|
2149
|
+
/**
|
2150
|
+
* The metadata forms of the data product revision.
|
2151
|
+
*/
|
2152
|
+
formsInput?: FormInputList;
|
2153
|
+
/**
|
2154
|
+
* The glossary terms of the data product revision.
|
2155
|
+
*/
|
2156
|
+
glossaryTerms?: GlossaryTerms;
|
2157
|
+
/**
|
2158
|
+
* The ID of the data product revision.
|
2159
|
+
*/
|
2160
|
+
identifier: DataProductId;
|
2161
|
+
/**
|
2162
|
+
* The data assets of the data product revision.
|
2163
|
+
*/
|
2164
|
+
items?: DataProductItems;
|
2165
|
+
/**
|
2166
|
+
* The name of the data product revision.
|
2167
|
+
*/
|
2168
|
+
name: DataProductName;
|
2169
|
+
}
|
2170
|
+
export interface CreateDataProductRevisionOutput {
|
2171
|
+
/**
|
2172
|
+
* The timestamp at which the data product revision is created.
|
2173
|
+
*/
|
2174
|
+
createdAt?: CreatedAt;
|
2175
|
+
/**
|
2176
|
+
* The user who created the data product revision.
|
2177
|
+
*/
|
2178
|
+
createdBy?: CreatedBy;
|
2179
|
+
/**
|
2180
|
+
* The description of the data product revision.
|
2181
|
+
*/
|
2182
|
+
description?: DataProductDescription;
|
2183
|
+
/**
|
2184
|
+
* The ID of the domain where data product revision is created.
|
2185
|
+
*/
|
2186
|
+
domainId: DomainId;
|
2187
|
+
/**
|
2188
|
+
* The timestamp at which the first revision of the data product is created.
|
2189
|
+
*/
|
2190
|
+
firstRevisionCreatedAt?: CreatedAt;
|
2191
|
+
/**
|
2192
|
+
* The user who created the first revision of the data product.
|
2193
|
+
*/
|
2194
|
+
firstRevisionCreatedBy?: CreatedBy;
|
2195
|
+
/**
|
2196
|
+
* The metadata forms of the data product revision.
|
2197
|
+
*/
|
2198
|
+
formsOutput?: FormOutputList;
|
2199
|
+
/**
|
2200
|
+
* The glossary terms of the data product revision.
|
2201
|
+
*/
|
2202
|
+
glossaryTerms?: GlossaryTerms;
|
2203
|
+
/**
|
2204
|
+
* The ID of the data product revision.
|
2205
|
+
*/
|
2206
|
+
id: DataProductId;
|
2207
|
+
/**
|
2208
|
+
* The data assets of the data product revision.
|
2209
|
+
*/
|
2210
|
+
items?: DataProductItems;
|
2211
|
+
/**
|
2212
|
+
* The name of the data product revision.
|
2213
|
+
*/
|
2214
|
+
name: DataProductName;
|
2215
|
+
/**
|
2216
|
+
* The ID of the owning project of the data product revision.
|
2217
|
+
*/
|
2218
|
+
owningProjectId: ProjectId;
|
2219
|
+
/**
|
2220
|
+
* The revision of the data product revision.
|
2221
|
+
*/
|
2222
|
+
revision: Revision;
|
2223
|
+
/**
|
2224
|
+
* The status of the data product revision.
|
2225
|
+
*/
|
2226
|
+
status: DataProductStatus;
|
2227
|
+
}
|
1989
2228
|
export interface CreateDataSourceInput {
|
1990
2229
|
/**
|
1991
2230
|
* The metadata forms that are to be attached to the assets that this data source works with.
|
@@ -3102,6 +3341,185 @@ declare namespace DataZone {
|
|
3102
3341
|
export type CustomParameterList = CustomParameter[];
|
3103
3342
|
export type DataAssetActivityStatus = "FAILED"|"PUBLISHING_FAILED"|"SUCCEEDED_CREATED"|"SUCCEEDED_UPDATED"|"SKIPPED_ALREADY_IMPORTED"|"SKIPPED_ARCHIVED"|"SKIPPED_NO_ACCESS"|"UNCHANGED"|string;
|
3104
3343
|
export type DataPointIdentifier = string;
|
3344
|
+
export type DataProductDescription = string;
|
3345
|
+
export type DataProductId = string;
|
3346
|
+
export interface DataProductItem {
|
3347
|
+
/**
|
3348
|
+
* The glossary terms of the data product.
|
3349
|
+
*/
|
3350
|
+
glossaryTerms?: ItemGlossaryTerms;
|
3351
|
+
/**
|
3352
|
+
* The ID of the data product.
|
3353
|
+
*/
|
3354
|
+
identifier: EntityIdentifier;
|
3355
|
+
/**
|
3356
|
+
* The type of the data product.
|
3357
|
+
*/
|
3358
|
+
itemType: DataProductItemType;
|
3359
|
+
/**
|
3360
|
+
* The revision of the data product.
|
3361
|
+
*/
|
3362
|
+
revision?: Revision;
|
3363
|
+
}
|
3364
|
+
export type DataProductItemType = "ASSET"|string;
|
3365
|
+
export type DataProductItems = DataProductItem[];
|
3366
|
+
export interface DataProductListing {
|
3367
|
+
/**
|
3368
|
+
* The timestamp at which the data product listing was created.
|
3369
|
+
*/
|
3370
|
+
createdAt?: CreatedAt;
|
3371
|
+
/**
|
3372
|
+
* The ID of the data product listing.
|
3373
|
+
*/
|
3374
|
+
dataProductId?: DataProductId;
|
3375
|
+
/**
|
3376
|
+
* The revision of the data product listing.
|
3377
|
+
*/
|
3378
|
+
dataProductRevision?: Revision;
|
3379
|
+
/**
|
3380
|
+
* The metadata forms of the data product listing.
|
3381
|
+
*/
|
3382
|
+
forms?: Forms;
|
3383
|
+
/**
|
3384
|
+
* The glossary terms of the data product listing.
|
3385
|
+
*/
|
3386
|
+
glossaryTerms?: DetailedGlossaryTerms;
|
3387
|
+
/**
|
3388
|
+
* The data assets of the data product listing.
|
3389
|
+
*/
|
3390
|
+
items?: ListingSummaries;
|
3391
|
+
/**
|
3392
|
+
* The ID of the owning project of the data product listing.
|
3393
|
+
*/
|
3394
|
+
owningProjectId?: ProjectId;
|
3395
|
+
}
|
3396
|
+
export interface DataProductListingItem {
|
3397
|
+
/**
|
3398
|
+
* The additional attributes of the asset of the data product.
|
3399
|
+
*/
|
3400
|
+
additionalAttributes?: DataProductListingItemAdditionalAttributes;
|
3401
|
+
/**
|
3402
|
+
* The timestamp at which the asset of the data product listing was created.
|
3403
|
+
*/
|
3404
|
+
createdAt?: CreatedAt;
|
3405
|
+
/**
|
3406
|
+
* The description of the asset of the asset of the data product.
|
3407
|
+
*/
|
3408
|
+
description?: Description;
|
3409
|
+
/**
|
3410
|
+
* The entity ID of the asset of the asset of the data product.
|
3411
|
+
*/
|
3412
|
+
entityId?: DataProductId;
|
3413
|
+
/**
|
3414
|
+
* The revision of the asset of the asset of the data product.
|
3415
|
+
*/
|
3416
|
+
entityRevision?: Revision;
|
3417
|
+
/**
|
3418
|
+
* The glossary terms of the asset of the asset of the data product.
|
3419
|
+
*/
|
3420
|
+
glossaryTerms?: DetailedGlossaryTerms;
|
3421
|
+
/**
|
3422
|
+
* The data of the asset of the data product.
|
3423
|
+
*/
|
3424
|
+
items?: ListingSummaryItems;
|
3425
|
+
/**
|
3426
|
+
* The timestamp at which the listing was created.
|
3427
|
+
*/
|
3428
|
+
listingCreatedBy?: CreatedBy;
|
3429
|
+
/**
|
3430
|
+
* The ID of the listing.
|
3431
|
+
*/
|
3432
|
+
listingId?: ListingId;
|
3433
|
+
/**
|
3434
|
+
* The revision of the listing.
|
3435
|
+
*/
|
3436
|
+
listingRevision?: Revision;
|
3437
|
+
/**
|
3438
|
+
* The user who updated the listing.
|
3439
|
+
*/
|
3440
|
+
listingUpdatedBy?: UpdatedBy;
|
3441
|
+
/**
|
3442
|
+
* The name of the asset of the data product.
|
3443
|
+
*/
|
3444
|
+
name?: DataProductName;
|
3445
|
+
/**
|
3446
|
+
* The ID of the owning project of the asset of the data product.
|
3447
|
+
*/
|
3448
|
+
owningProjectId?: ProjectId;
|
3449
|
+
}
|
3450
|
+
export interface DataProductListingItemAdditionalAttributes {
|
3451
|
+
/**
|
3452
|
+
* The metadata forms of the asset of the data product.
|
3453
|
+
*/
|
3454
|
+
forms?: Forms;
|
3455
|
+
}
|
3456
|
+
export type DataProductName = string;
|
3457
|
+
export interface DataProductResultItem {
|
3458
|
+
/**
|
3459
|
+
* The timestamp at which the data product was created.
|
3460
|
+
*/
|
3461
|
+
createdAt?: CreatedAt;
|
3462
|
+
/**
|
3463
|
+
* The user who created the data product.
|
3464
|
+
*/
|
3465
|
+
createdBy?: CreatedBy;
|
3466
|
+
/**
|
3467
|
+
* The description of the data product.
|
3468
|
+
*/
|
3469
|
+
description?: DataProductDescription;
|
3470
|
+
/**
|
3471
|
+
* The ID of the domain where the data product lives.
|
3472
|
+
*/
|
3473
|
+
domainId: DomainId;
|
3474
|
+
/**
|
3475
|
+
* The timestamp at which first revision of the data product was created.
|
3476
|
+
*/
|
3477
|
+
firstRevisionCreatedAt?: CreatedAt;
|
3478
|
+
/**
|
3479
|
+
* The user who created the first revision of the data product.
|
3480
|
+
*/
|
3481
|
+
firstRevisionCreatedBy?: CreatedBy;
|
3482
|
+
/**
|
3483
|
+
* The glossary terms of the data product.
|
3484
|
+
*/
|
3485
|
+
glossaryTerms?: GlossaryTerms;
|
3486
|
+
/**
|
3487
|
+
* The ID of the data product.
|
3488
|
+
*/
|
3489
|
+
id: DataProductId;
|
3490
|
+
/**
|
3491
|
+
* The name of the data product.
|
3492
|
+
*/
|
3493
|
+
name: DataProductName;
|
3494
|
+
/**
|
3495
|
+
* The ID of the owning project of the data product.
|
3496
|
+
*/
|
3497
|
+
owningProjectId: ProjectId;
|
3498
|
+
}
|
3499
|
+
export interface DataProductRevision {
|
3500
|
+
/**
|
3501
|
+
* The timestamp at which the data product revision was created.
|
3502
|
+
*/
|
3503
|
+
createdAt?: CreatedAt;
|
3504
|
+
/**
|
3505
|
+
* The user who created the data product revision.
|
3506
|
+
*/
|
3507
|
+
createdBy?: CreatedBy;
|
3508
|
+
/**
|
3509
|
+
* The ID of the domain where the data product revision lives.
|
3510
|
+
*/
|
3511
|
+
domainId?: DomainId;
|
3512
|
+
/**
|
3513
|
+
* The ID of the data product revision.
|
3514
|
+
*/
|
3515
|
+
id?: DataProductId;
|
3516
|
+
/**
|
3517
|
+
* The data product revision.
|
3518
|
+
*/
|
3519
|
+
revision?: Revision;
|
3520
|
+
}
|
3521
|
+
export type DataProductRevisions = DataProductRevision[];
|
3522
|
+
export type DataProductStatus = "CREATED"|"CREATING"|"CREATE_FAILED"|string;
|
3105
3523
|
export interface DataSourceConfigurationInput {
|
3106
3524
|
/**
|
3107
3525
|
* The configuration of the Amazon Web Services Glue data source.
|
@@ -3313,6 +3731,18 @@ declare namespace DataZone {
|
|
3313
3731
|
}
|
3314
3732
|
export interface DeleteAssetTypeOutput {
|
3315
3733
|
}
|
3734
|
+
export interface DeleteDataProductInput {
|
3735
|
+
/**
|
3736
|
+
* The ID of the Amazon DataZone domain in which the data product is deleted.
|
3737
|
+
*/
|
3738
|
+
domainIdentifier: DomainId;
|
3739
|
+
/**
|
3740
|
+
* The identifier of the data product that is deleted.
|
3741
|
+
*/
|
3742
|
+
identifier: DataProductId;
|
3743
|
+
}
|
3744
|
+
export interface DeleteDataProductOutput {
|
3745
|
+
}
|
3316
3746
|
export interface DeleteDataSourceInput {
|
3317
3747
|
/**
|
3318
3748
|
* A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
|
@@ -3786,7 +4216,7 @@ declare namespace DataZone {
|
|
3786
4216
|
export type EnabledRegionList = RegionName[];
|
3787
4217
|
export type EntityId = string;
|
3788
4218
|
export type EntityIdentifier = string;
|
3789
|
-
export type EntityType = "ASSET"|string;
|
4219
|
+
export type EntityType = "ASSET"|"DATA_PRODUCT"|string;
|
3790
4220
|
export type EnvironmentActionId = string;
|
3791
4221
|
export type EnvironmentActionList = ConfigurableEnvironmentAction[];
|
3792
4222
|
export interface EnvironmentActionSummary {
|
@@ -4413,6 +4843,78 @@ declare namespace DataZone {
|
|
4413
4843
|
*/
|
4414
4844
|
updatedBy?: UpdatedBy;
|
4415
4845
|
}
|
4846
|
+
export interface GetDataProductInput {
|
4847
|
+
/**
|
4848
|
+
* The ID of the domain where the data product lives.
|
4849
|
+
*/
|
4850
|
+
domainIdentifier: DomainId;
|
4851
|
+
/**
|
4852
|
+
* The ID of the data product.
|
4853
|
+
*/
|
4854
|
+
identifier: DataProductId;
|
4855
|
+
/**
|
4856
|
+
* The revision of the data product.
|
4857
|
+
*/
|
4858
|
+
revision?: Revision;
|
4859
|
+
}
|
4860
|
+
export interface GetDataProductOutput {
|
4861
|
+
/**
|
4862
|
+
* The timestamp at which the data product is created.
|
4863
|
+
*/
|
4864
|
+
createdAt?: CreatedAt;
|
4865
|
+
/**
|
4866
|
+
* The user who created the data product.
|
4867
|
+
*/
|
4868
|
+
createdBy?: CreatedBy;
|
4869
|
+
/**
|
4870
|
+
* The description of the data product.
|
4871
|
+
*/
|
4872
|
+
description?: DataProductDescription;
|
4873
|
+
/**
|
4874
|
+
* The ID of the domain where the data product lives.
|
4875
|
+
*/
|
4876
|
+
domainId: DomainId;
|
4877
|
+
/**
|
4878
|
+
* The timestamp at which the first revision of the data product is created.
|
4879
|
+
*/
|
4880
|
+
firstRevisionCreatedAt?: CreatedAt;
|
4881
|
+
/**
|
4882
|
+
* The user who created the first revision of the data product.
|
4883
|
+
*/
|
4884
|
+
firstRevisionCreatedBy?: CreatedBy;
|
4885
|
+
/**
|
4886
|
+
* The metadata forms of the data product.
|
4887
|
+
*/
|
4888
|
+
formsOutput?: FormOutputList;
|
4889
|
+
/**
|
4890
|
+
* The glossary terms of the data product.
|
4891
|
+
*/
|
4892
|
+
glossaryTerms?: GlossaryTerms;
|
4893
|
+
/**
|
4894
|
+
* The ID of the data product.
|
4895
|
+
*/
|
4896
|
+
id: DataProductId;
|
4897
|
+
/**
|
4898
|
+
* The data assets of the data product.
|
4899
|
+
*/
|
4900
|
+
items?: DataProductItems;
|
4901
|
+
/**
|
4902
|
+
* The name of the data product.
|
4903
|
+
*/
|
4904
|
+
name: DataProductName;
|
4905
|
+
/**
|
4906
|
+
* The ID of the owning project of the data product.
|
4907
|
+
*/
|
4908
|
+
owningProjectId: ProjectId;
|
4909
|
+
/**
|
4910
|
+
* The revision of the data product.
|
4911
|
+
*/
|
4912
|
+
revision: Revision;
|
4913
|
+
/**
|
4914
|
+
* The status of the data product.
|
4915
|
+
*/
|
4916
|
+
status: DataProductStatus;
|
4917
|
+
}
|
4416
4918
|
export interface GetDataSourceInput {
|
4417
4919
|
/**
|
4418
4920
|
* The ID of the Amazon DataZone domain in which the data source exists.
|
@@ -5973,7 +6475,7 @@ declare namespace DataZone {
|
|
5973
6475
|
values: StringList;
|
5974
6476
|
}
|
5975
6477
|
export type Integer = number;
|
5976
|
-
export type InventorySearchScope = "ASSET"|"GLOSSARY"|"GLOSSARY_TERM"|string;
|
6478
|
+
export type InventorySearchScope = "ASSET"|"GLOSSARY"|"GLOSSARY_TERM"|"DATA_PRODUCT"|string;
|
5977
6479
|
export interface IsNotNullExpression {
|
5978
6480
|
/**
|
5979
6481
|
* The name of the column.
|
@@ -5986,6 +6488,7 @@ declare namespace DataZone {
|
|
5986
6488
|
*/
|
5987
6489
|
columnName: String;
|
5988
6490
|
}
|
6491
|
+
export type ItemGlossaryTerms = GlossaryTermId[];
|
5989
6492
|
export type KmsKeyArn = string;
|
5990
6493
|
export interface LakeFormationConfiguration {
|
5991
6494
|
/**
|
@@ -6191,6 +6694,34 @@ declare namespace DataZone {
|
|
6191
6694
|
*/
|
6192
6695
|
nextToken?: PaginationToken;
|
6193
6696
|
}
|
6697
|
+
export interface ListDataProductRevisionsInput {
|
6698
|
+
/**
|
6699
|
+
* The ID of the domain of the data product revisions that you want to list.
|
6700
|
+
*/
|
6701
|
+
domainIdentifier: DomainId;
|
6702
|
+
/**
|
6703
|
+
* The ID of the data product revision.
|
6704
|
+
*/
|
6705
|
+
identifier: DataProductId;
|
6706
|
+
/**
|
6707
|
+
* The maximum number of asset filters to return in a single call to ListDataProductRevisions. When the number of data product revisions to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListDataProductRevisions to list the next set of data product revisions.
|
6708
|
+
*/
|
6709
|
+
maxResults?: MaxResults;
|
6710
|
+
/**
|
6711
|
+
* When the number of data product revisions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data product revisions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDataProductRevisions to list the next set of data product revisions.
|
6712
|
+
*/
|
6713
|
+
nextToken?: PaginationToken;
|
6714
|
+
}
|
6715
|
+
export interface ListDataProductRevisionsOutput {
|
6716
|
+
/**
|
6717
|
+
* The results of the ListDataProductRevisions action.
|
6718
|
+
*/
|
6719
|
+
items: DataProductRevisions;
|
6720
|
+
/**
|
6721
|
+
* When the number of data product revisions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data product revisions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListDataProductRevisions to list the next set of data product revisions.
|
6722
|
+
*/
|
6723
|
+
nextToken?: PaginationToken;
|
6724
|
+
}
|
6194
6725
|
export interface ListDataSourceRunActivitiesInput {
|
6195
6726
|
/**
|
6196
6727
|
* The identifier of the Amazon DataZone domain in which to list data source run activities.
|
@@ -6717,6 +7248,10 @@ declare namespace DataZone {
|
|
6717
7248
|
* When the number of subscription grants is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of subscription grants, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListSubscriptionGrants to list the next set of subscription grants.
|
6718
7249
|
*/
|
6719
7250
|
nextToken?: PaginationToken;
|
7251
|
+
/**
|
7252
|
+
* The ID of the owning project of the subscription grants.
|
7253
|
+
*/
|
7254
|
+
owningProjectId?: ProjectId;
|
6720
7255
|
/**
|
6721
7256
|
* Specifies the way of sorting the results of this action.
|
6722
7257
|
*/
|
@@ -6778,7 +7313,7 @@ declare namespace DataZone {
|
|
6778
7313
|
*/
|
6779
7314
|
sortOrder?: SortOrder;
|
6780
7315
|
/**
|
6781
|
-
* Specifies the status of the subscription requests.
|
7316
|
+
* Specifies the status of the subscription requests. This is not a required parameter, but if not specified, by default, Amazon DataZone returns only PENDING subscription requests.
|
6782
7317
|
*/
|
6783
7318
|
status?: SubscriptionRequestStatus;
|
6784
7319
|
/**
|
@@ -6862,7 +7397,7 @@ declare namespace DataZone {
|
|
6862
7397
|
*/
|
6863
7398
|
sortOrder?: SortOrder;
|
6864
7399
|
/**
|
6865
|
-
* The status of the subscriptions that you want to list.
|
7400
|
+
* The status of the subscriptions that you want to list. This is not a required parameter, but if not provided, by default, Amazon DataZone returns only APPROVED subscriptions.
|
6866
7401
|
*/
|
6867
7402
|
status?: SubscriptionStatus;
|
6868
7403
|
/**
|
@@ -6946,6 +7481,10 @@ declare namespace DataZone {
|
|
6946
7481
|
* An asset published in an Amazon DataZone catalog.
|
6947
7482
|
*/
|
6948
7483
|
assetListing?: AssetListing;
|
7484
|
+
/**
|
7485
|
+
* The data product listing.
|
7486
|
+
*/
|
7487
|
+
dataProductListing?: DataProductListing;
|
6949
7488
|
}
|
6950
7489
|
export type ListingName = string;
|
6951
7490
|
export interface ListingRevision {
|
@@ -6969,6 +7508,36 @@ declare namespace DataZone {
|
|
6969
7508
|
revision: Revision;
|
6970
7509
|
}
|
6971
7510
|
export type ListingStatus = "CREATING"|"ACTIVE"|"INACTIVE"|string;
|
7511
|
+
export type ListingSummaries = ListingSummary[];
|
7512
|
+
export interface ListingSummary {
|
7513
|
+
/**
|
7514
|
+
* The glossary terms of the data product.
|
7515
|
+
*/
|
7516
|
+
glossaryTerms?: DetailedGlossaryTerms;
|
7517
|
+
/**
|
7518
|
+
* The ID of the data product listing.
|
7519
|
+
*/
|
7520
|
+
listingId?: ListingId;
|
7521
|
+
/**
|
7522
|
+
* The revision of the data product listing.
|
7523
|
+
*/
|
7524
|
+
listingRevision?: Revision;
|
7525
|
+
}
|
7526
|
+
export interface ListingSummaryItem {
|
7527
|
+
/**
|
7528
|
+
* The glossary terms of the data product listing.
|
7529
|
+
*/
|
7530
|
+
glossaryTerms?: DetailedGlossaryTerms;
|
7531
|
+
/**
|
7532
|
+
* The ID of the data product listing.
|
7533
|
+
*/
|
7534
|
+
listingId?: ListingId;
|
7535
|
+
/**
|
7536
|
+
* The revision of the data product listing.
|
7537
|
+
*/
|
7538
|
+
listingRevision?: Revision;
|
7539
|
+
}
|
7540
|
+
export type ListingSummaryItems = ListingSummaryItem[];
|
6972
7541
|
export type LongDescription = string;
|
6973
7542
|
export type MaxResults = number;
|
6974
7543
|
export type MaxResultsForListDomains = number;
|
@@ -7861,6 +8430,10 @@ declare namespace DataZone {
|
|
7861
8430
|
* The asset item included in the search results.
|
7862
8431
|
*/
|
7863
8432
|
assetItem?: AssetItem;
|
8433
|
+
/**
|
8434
|
+
* The data product.
|
8435
|
+
*/
|
8436
|
+
dataProductItem?: DataProductResultItem;
|
7864
8437
|
/**
|
7865
8438
|
* The glossary item included in the search results.
|
7866
8439
|
*/
|
@@ -7940,6 +8513,10 @@ declare namespace DataZone {
|
|
7940
8513
|
* The asset listing included in the results of the SearchListings action.
|
7941
8514
|
*/
|
7942
8515
|
assetListing?: AssetListingItem;
|
8516
|
+
/**
|
8517
|
+
* The data product listing.
|
8518
|
+
*/
|
8519
|
+
dataProductListing?: DataProductListingItem;
|
7943
8520
|
}
|
7944
8521
|
export type SearchResultItems = SearchResultItem[];
|
7945
8522
|
export interface SearchSort {
|
@@ -8330,6 +8907,10 @@ declare namespace DataZone {
|
|
8330
8907
|
* The asset for which the subscription grant is created.
|
8331
8908
|
*/
|
8332
8909
|
assetListing?: SubscribedAssetListing;
|
8910
|
+
/**
|
8911
|
+
* The data product listing.
|
8912
|
+
*/
|
8913
|
+
productListing?: SubscribedProductListing;
|
8333
8914
|
}
|
8334
8915
|
export interface SubscribedPrincipal {
|
8335
8916
|
/**
|
@@ -8344,6 +8925,32 @@ declare namespace DataZone {
|
|
8344
8925
|
project?: SubscribedProjectInput;
|
8345
8926
|
}
|
8346
8927
|
export type SubscribedPrincipalInputs = SubscribedPrincipalInput[];
|
8928
|
+
export interface SubscribedProductListing {
|
8929
|
+
/**
|
8930
|
+
* The data assets of the data product listing.
|
8931
|
+
*/
|
8932
|
+
assetListings?: AssetInDataProductListingItems;
|
8933
|
+
/**
|
8934
|
+
* The description of the data product listing.
|
8935
|
+
*/
|
8936
|
+
description?: String;
|
8937
|
+
/**
|
8938
|
+
* The ID of the data product listing.
|
8939
|
+
*/
|
8940
|
+
entityId?: AssetId;
|
8941
|
+
/**
|
8942
|
+
* The revision of the data product listing.
|
8943
|
+
*/
|
8944
|
+
entityRevision?: Revision;
|
8945
|
+
/**
|
8946
|
+
* The glossary terms of the data product listing.
|
8947
|
+
*/
|
8948
|
+
glossaryTerms?: DetailedGlossaryTerms;
|
8949
|
+
/**
|
8950
|
+
* The name of the data product listing.
|
8951
|
+
*/
|
8952
|
+
name?: String;
|
8953
|
+
}
|
8347
8954
|
export interface SubscribedProject {
|
8348
8955
|
/**
|
8349
8956
|
* The identifier of the project that has the subscription grant.
|
@@ -8393,7 +9000,7 @@ declare namespace DataZone {
|
|
8393
9000
|
*/
|
8394
9001
|
status: SubscriptionGrantOverallStatus;
|
8395
9002
|
/**
|
8396
|
-
* The ID of the subscription
|
9003
|
+
* The ID of the subscription.
|
8397
9004
|
*/
|
8398
9005
|
subscriptionId?: SubscriptionId;
|
8399
9006
|
/**
|