@aws-sdk/client-datazone 3.546.0 → 3.548.0
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/README.md +32 -0
- package/dist-cjs/index.js +307 -21
- package/dist-es/DataZone.js +8 -0
- package/dist-es/commands/DeleteTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/GetTimeSeriesDataPointCommand.js +24 -0
- package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
- package/dist-es/commands/ListTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/PostTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +4 -15
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/pagination/ListTimeSeriesDataPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +199 -2
- package/dist-types/DataZone.d.ts +28 -0
- package/dist-types/DataZoneClient.d.ts +6 -2
- package/dist-types/commands/CreateAssetCommand.d.ts +10 -0
- package/dist-types/commands/CreateAssetRevisionCommand.d.ts +10 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTimeSeriesDataPointsCommand.d.ts +79 -0
- package/dist-types/commands/GetAssetCommand.d.ts +10 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +1 -0
- package/dist-types/commands/GetListingCommand.d.ts +10 -0
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +1 -2
- package/dist-types/commands/GetTimeSeriesDataPointCommand.d.ts +92 -0
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTimeSeriesDataPointsCommand.d.ts +94 -0
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +107 -0
- package/dist-types/commands/SearchCommand.d.ts +11 -1
- package/dist-types/commands/SearchListingsCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +228 -208
- package/dist-types/models/models_1.d.ts +371 -1
- package/dist-types/pagination/ListTimeSeriesDataPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/DataZone.d.ts +68 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetTimeSeriesDataPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -54
- package/dist-types/ts3.4/models/models_1.d.ts +93 -1
- package/dist-types/ts3.4/pagination/ListTimeSeriesDataPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -67,6 +67,7 @@ declare const UpdateDataSourceCommand_base: {
|
|
|
67
67
|
* ],
|
|
68
68
|
* },
|
|
69
69
|
* ],
|
|
70
|
+
* autoImportDataQualityResult: true || false,
|
|
70
71
|
* },
|
|
71
72
|
* redshiftRunConfiguration: { // RedshiftRunConfigurationInput
|
|
72
73
|
* dataAccessRole: "STRING_VALUE",
|
|
@@ -127,6 +128,7 @@ declare const UpdateDataSourceCommand_base: {
|
|
|
127
128
|
* // ],
|
|
128
129
|
* // },
|
|
129
130
|
* // ],
|
|
131
|
+
* // autoImportDataQualityResult: true || false,
|
|
130
132
|
* // },
|
|
131
133
|
* // redshiftRunConfiguration: { // RedshiftRunConfigurationOutput
|
|
132
134
|
* // accountId: "STRING_VALUE",
|
|
@@ -36,6 +36,7 @@ export * from "./DeleteProjectMembershipCommand";
|
|
|
36
36
|
export * from "./DeleteSubscriptionGrantCommand";
|
|
37
37
|
export * from "./DeleteSubscriptionRequestCommand";
|
|
38
38
|
export * from "./DeleteSubscriptionTargetCommand";
|
|
39
|
+
export * from "./DeleteTimeSeriesDataPointsCommand";
|
|
39
40
|
export * from "./GetAssetCommand";
|
|
40
41
|
export * from "./GetAssetTypeCommand";
|
|
41
42
|
export * from "./GetDataSourceCommand";
|
|
@@ -57,6 +58,7 @@ export * from "./GetSubscriptionCommand";
|
|
|
57
58
|
export * from "./GetSubscriptionGrantCommand";
|
|
58
59
|
export * from "./GetSubscriptionRequestDetailsCommand";
|
|
59
60
|
export * from "./GetSubscriptionTargetCommand";
|
|
61
|
+
export * from "./GetTimeSeriesDataPointCommand";
|
|
60
62
|
export * from "./GetUserProfileCommand";
|
|
61
63
|
export * from "./ListAssetRevisionsCommand";
|
|
62
64
|
export * from "./ListDataSourceRunActivitiesCommand";
|
|
@@ -76,6 +78,8 @@ export * from "./ListSubscriptionRequestsCommand";
|
|
|
76
78
|
export * from "./ListSubscriptionTargetsCommand";
|
|
77
79
|
export * from "./ListSubscriptionsCommand";
|
|
78
80
|
export * from "./ListTagsForResourceCommand";
|
|
81
|
+
export * from "./ListTimeSeriesDataPointsCommand";
|
|
82
|
+
export * from "./PostTimeSeriesDataPointsCommand";
|
|
79
83
|
export * from "./PutEnvironmentBlueprintConfigurationCommand";
|
|
80
84
|
export * from "./RejectPredictionsCommand";
|
|
81
85
|
export * from "./RejectSubscriptionRequestCommand";
|
|
@@ -633,6 +633,42 @@ export interface FormOutput {
|
|
|
633
633
|
*/
|
|
634
634
|
content?: string;
|
|
635
635
|
}
|
|
636
|
+
/**
|
|
637
|
+
* <p>The summary of the time series data points form.</p>
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
export interface TimeSeriesDataPointSummaryFormOutput {
|
|
641
|
+
/**
|
|
642
|
+
* <p>The name of the time series data points summary form.</p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
formName: string | undefined;
|
|
646
|
+
/**
|
|
647
|
+
* <p>The type ID of the time series data points summary form.</p>
|
|
648
|
+
* @public
|
|
649
|
+
*/
|
|
650
|
+
typeIdentifier: string | undefined;
|
|
651
|
+
/**
|
|
652
|
+
* <p>The type revision of the time series data points summary form.</p>
|
|
653
|
+
* @public
|
|
654
|
+
*/
|
|
655
|
+
typeRevision?: string;
|
|
656
|
+
/**
|
|
657
|
+
* <p>The timestamp of the time series data points summary form.</p>
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
660
|
+
timestamp: Date | undefined;
|
|
661
|
+
/**
|
|
662
|
+
* <p>The content of the summary of the time series data points form.</p>
|
|
663
|
+
* @public
|
|
664
|
+
*/
|
|
665
|
+
contentSummary?: string;
|
|
666
|
+
/**
|
|
667
|
+
* <p>The ID of the time series data points summary form.</p>
|
|
668
|
+
* @public
|
|
669
|
+
*/
|
|
670
|
+
id?: string;
|
|
671
|
+
}
|
|
636
672
|
/**
|
|
637
673
|
* @public
|
|
638
674
|
*/
|
|
@@ -722,6 +758,11 @@ export interface CreateAssetOutput {
|
|
|
722
758
|
* @public
|
|
723
759
|
*/
|
|
724
760
|
readOnlyFormsOutput?: FormOutput[];
|
|
761
|
+
/**
|
|
762
|
+
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
763
|
+
* @public
|
|
764
|
+
*/
|
|
765
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
725
766
|
/**
|
|
726
767
|
* <p>The configuration of the automatically generated business-friendly metadata for the
|
|
727
768
|
* asset.</p>
|
|
@@ -883,6 +924,11 @@ export interface CreateAssetRevisionOutput {
|
|
|
883
924
|
* @public
|
|
884
925
|
*/
|
|
885
926
|
readOnlyFormsOutput?: FormOutput[];
|
|
927
|
+
/**
|
|
928
|
+
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
929
|
+
* @public
|
|
930
|
+
*/
|
|
931
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
886
932
|
/**
|
|
887
933
|
* <p>The configuration of the automatically generated business-friendly metadata for the
|
|
888
934
|
* asset.</p>
|
|
@@ -1019,6 +1065,11 @@ export interface GetAssetOutput {
|
|
|
1019
1065
|
* @public
|
|
1020
1066
|
*/
|
|
1021
1067
|
readOnlyFormsOutput?: FormOutput[];
|
|
1068
|
+
/**
|
|
1069
|
+
* <p>The latest data point that was imported into the time series form for the asset. </p>
|
|
1070
|
+
* @public
|
|
1071
|
+
*/
|
|
1072
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1022
1073
|
}
|
|
1023
1074
|
/**
|
|
1024
1075
|
* <p>The additional attributes of an inventory asset.</p>
|
|
@@ -1035,6 +1086,12 @@ export interface AssetItemAdditionalAttributes {
|
|
|
1035
1086
|
* @public
|
|
1036
1087
|
*/
|
|
1037
1088
|
readOnlyFormsOutput?: FormOutput[];
|
|
1089
|
+
/**
|
|
1090
|
+
* <p>The latest time series data points forms included in the additional attributes of an
|
|
1091
|
+
* asset.</p>
|
|
1092
|
+
* @public
|
|
1093
|
+
*/
|
|
1094
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1038
1095
|
}
|
|
1039
1096
|
/**
|
|
1040
1097
|
* <p>A Amazon DataZone inventory asset.</p>
|
|
@@ -1142,6 +1199,12 @@ export interface AssetListing {
|
|
|
1142
1199
|
* @public
|
|
1143
1200
|
*/
|
|
1144
1201
|
forms?: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* <p>The latest time series data points forms included in the additional attributes of an
|
|
1204
|
+
* asset.</p>
|
|
1205
|
+
* @public
|
|
1206
|
+
*/
|
|
1207
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1145
1208
|
/**
|
|
1146
1209
|
* <p>The glossary terms attached to an asset published in an Amazon DataZone catalog. </p>
|
|
1147
1210
|
* @public
|
|
@@ -1164,6 +1227,12 @@ export interface AssetListingItemAdditionalAttributes {
|
|
|
1164
1227
|
* @public
|
|
1165
1228
|
*/
|
|
1166
1229
|
forms?: string;
|
|
1230
|
+
/**
|
|
1231
|
+
* <p>The latest time series data points forms included in the additional attributes of an
|
|
1232
|
+
* asset.</p>
|
|
1233
|
+
* @public
|
|
1234
|
+
*/
|
|
1235
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
1167
1236
|
}
|
|
1168
1237
|
/**
|
|
1169
1238
|
* <p>The details of an asset published in an Amazon DataZone catalog.</p>
|
|
@@ -1862,6 +1931,12 @@ export interface GlueRunConfigurationInput {
|
|
|
1862
1931
|
* @public
|
|
1863
1932
|
*/
|
|
1864
1933
|
relationalFilterConfigurations: RelationalFilterConfiguration[] | undefined;
|
|
1934
|
+
/**
|
|
1935
|
+
* <p>Specifies whether to automatically import data quality metrics as part of the data
|
|
1936
|
+
* source run.</p>
|
|
1937
|
+
* @public
|
|
1938
|
+
*/
|
|
1939
|
+
autoImportDataQualityResult?: boolean;
|
|
1865
1940
|
}
|
|
1866
1941
|
/**
|
|
1867
1942
|
* <p>The details of the credentials required to access an Amazon Redshift cluster.</p>
|
|
@@ -2231,6 +2306,12 @@ export interface GlueRunConfigurationOutput {
|
|
|
2231
2306
|
* @public
|
|
2232
2307
|
*/
|
|
2233
2308
|
relationalFilterConfigurations: RelationalFilterConfiguration[] | undefined;
|
|
2309
|
+
/**
|
|
2310
|
+
* <p>Specifies whether to automatically import data quality metrics as part of the data
|
|
2311
|
+
* source run.</p>
|
|
2312
|
+
* @public
|
|
2313
|
+
*/
|
|
2314
|
+
autoImportDataQualityResult?: boolean;
|
|
2234
2315
|
}
|
|
2235
2316
|
/**
|
|
2236
2317
|
* <p>The configuration details of the Amazon Redshift data source.</p>
|
|
@@ -5787,6 +5868,55 @@ export interface DeleteSubscriptionTargetInput {
|
|
|
5787
5868
|
*/
|
|
5788
5869
|
identifier: string | undefined;
|
|
5789
5870
|
}
|
|
5871
|
+
/**
|
|
5872
|
+
* @public
|
|
5873
|
+
* @enum
|
|
5874
|
+
*/
|
|
5875
|
+
export declare const TimeSeriesEntityType: {
|
|
5876
|
+
readonly ASSET: "ASSET";
|
|
5877
|
+
readonly LISTING: "LISTING";
|
|
5878
|
+
};
|
|
5879
|
+
/**
|
|
5880
|
+
* @public
|
|
5881
|
+
*/
|
|
5882
|
+
export type TimeSeriesEntityType = (typeof TimeSeriesEntityType)[keyof typeof TimeSeriesEntityType];
|
|
5883
|
+
/**
|
|
5884
|
+
* @public
|
|
5885
|
+
*/
|
|
5886
|
+
export interface DeleteTimeSeriesDataPointsInput {
|
|
5887
|
+
/**
|
|
5888
|
+
* <p>The ID of the Amazon DataZone domain that houses the asset for which you want to delete
|
|
5889
|
+
* a time series form.</p>
|
|
5890
|
+
* @public
|
|
5891
|
+
*/
|
|
5892
|
+
domainIdentifier: string | undefined;
|
|
5893
|
+
/**
|
|
5894
|
+
* <p>The ID of the asset for which you want to delete a time series form.</p>
|
|
5895
|
+
* @public
|
|
5896
|
+
*/
|
|
5897
|
+
entityIdentifier: string | undefined;
|
|
5898
|
+
/**
|
|
5899
|
+
* <p>The type of the asset for which you want to delete a time series form.</p>
|
|
5900
|
+
* @public
|
|
5901
|
+
*/
|
|
5902
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
5903
|
+
/**
|
|
5904
|
+
* <p>The name of the time series form that you want to delete.</p>
|
|
5905
|
+
* @public
|
|
5906
|
+
*/
|
|
5907
|
+
formName: string | undefined;
|
|
5908
|
+
/**
|
|
5909
|
+
* <p>A unique, case-sensitive identifier to ensure idempotency of the request. This field is
|
|
5910
|
+
* automatically populated if not provided.</p>
|
|
5911
|
+
* @public
|
|
5912
|
+
*/
|
|
5913
|
+
clientToken?: string;
|
|
5914
|
+
}
|
|
5915
|
+
/**
|
|
5916
|
+
* @public
|
|
5917
|
+
*/
|
|
5918
|
+
export interface DeleteTimeSeriesDataPointsOutput {
|
|
5919
|
+
}
|
|
5790
5920
|
/**
|
|
5791
5921
|
* @public
|
|
5792
5922
|
*/
|
|
@@ -7192,6 +7322,104 @@ export interface GetSubscriptionTargetOutput {
|
|
|
7192
7322
|
*/
|
|
7193
7323
|
provider: string | undefined;
|
|
7194
7324
|
}
|
|
7325
|
+
/**
|
|
7326
|
+
* @public
|
|
7327
|
+
*/
|
|
7328
|
+
export interface GetTimeSeriesDataPointInput {
|
|
7329
|
+
/**
|
|
7330
|
+
* <p>The ID of the Amazon DataZone domain that houses the asset for which you want to get the
|
|
7331
|
+
* data point.</p>
|
|
7332
|
+
* @public
|
|
7333
|
+
*/
|
|
7334
|
+
domainIdentifier: string | undefined;
|
|
7335
|
+
/**
|
|
7336
|
+
* <p>The ID of the asset for which you want to get the data point.</p>
|
|
7337
|
+
* @public
|
|
7338
|
+
*/
|
|
7339
|
+
entityIdentifier: string | undefined;
|
|
7340
|
+
/**
|
|
7341
|
+
* <p>The type of the asset for which you want to get the data point.</p>
|
|
7342
|
+
* @public
|
|
7343
|
+
*/
|
|
7344
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
7345
|
+
/**
|
|
7346
|
+
* <p>The ID of the data point that you want to get.</p>
|
|
7347
|
+
* @public
|
|
7348
|
+
*/
|
|
7349
|
+
identifier: string | undefined;
|
|
7350
|
+
/**
|
|
7351
|
+
* <p>The name of the time series form that houses the data point that you want to get.</p>
|
|
7352
|
+
* @public
|
|
7353
|
+
*/
|
|
7354
|
+
formName: string | undefined;
|
|
7355
|
+
}
|
|
7356
|
+
/**
|
|
7357
|
+
* <p>The time series data points form.</p>
|
|
7358
|
+
* @public
|
|
7359
|
+
*/
|
|
7360
|
+
export interface TimeSeriesDataPointFormOutput {
|
|
7361
|
+
/**
|
|
7362
|
+
* <p>The name of the time series data points form.</p>
|
|
7363
|
+
* @public
|
|
7364
|
+
*/
|
|
7365
|
+
formName: string | undefined;
|
|
7366
|
+
/**
|
|
7367
|
+
* <p>The ID of the type of the time series data points form.</p>
|
|
7368
|
+
* @public
|
|
7369
|
+
*/
|
|
7370
|
+
typeIdentifier: string | undefined;
|
|
7371
|
+
/**
|
|
7372
|
+
* <p>The revision type of the time series data points form.</p>
|
|
7373
|
+
* @public
|
|
7374
|
+
*/
|
|
7375
|
+
typeRevision?: string;
|
|
7376
|
+
/**
|
|
7377
|
+
* <p>The timestamp of the time series data points form.</p>
|
|
7378
|
+
* @public
|
|
7379
|
+
*/
|
|
7380
|
+
timestamp: Date | undefined;
|
|
7381
|
+
/**
|
|
7382
|
+
* <p>The content of the time series data points form.</p>
|
|
7383
|
+
* @public
|
|
7384
|
+
*/
|
|
7385
|
+
content?: string;
|
|
7386
|
+
/**
|
|
7387
|
+
* <p>The ID of the time series data points form.</p>
|
|
7388
|
+
* @public
|
|
7389
|
+
*/
|
|
7390
|
+
id?: string;
|
|
7391
|
+
}
|
|
7392
|
+
/**
|
|
7393
|
+
* @public
|
|
7394
|
+
*/
|
|
7395
|
+
export interface GetTimeSeriesDataPointOutput {
|
|
7396
|
+
/**
|
|
7397
|
+
* <p>The ID of the Amazon DataZone domain that houses the asset data point that you want to
|
|
7398
|
+
* get.</p>
|
|
7399
|
+
* @public
|
|
7400
|
+
*/
|
|
7401
|
+
domainId?: string;
|
|
7402
|
+
/**
|
|
7403
|
+
* <p>The ID of the asset for which you want to get the data point.</p>
|
|
7404
|
+
* @public
|
|
7405
|
+
*/
|
|
7406
|
+
entityId?: string;
|
|
7407
|
+
/**
|
|
7408
|
+
* <p>The type of the asset for which you want to get the data point.</p>
|
|
7409
|
+
* @public
|
|
7410
|
+
*/
|
|
7411
|
+
entityType?: TimeSeriesEntityType;
|
|
7412
|
+
/**
|
|
7413
|
+
* <p>The name of the time series form that houses the data point that you want to get.</p>
|
|
7414
|
+
* @public
|
|
7415
|
+
*/
|
|
7416
|
+
formName?: string;
|
|
7417
|
+
/**
|
|
7418
|
+
* <p>The time series form that houses the data point that you want to get.</p>
|
|
7419
|
+
* @public
|
|
7420
|
+
*/
|
|
7421
|
+
form?: TimeSeriesDataPointFormOutput;
|
|
7422
|
+
}
|
|
7195
7423
|
/**
|
|
7196
7424
|
* @public
|
|
7197
7425
|
*/
|
|
@@ -9207,206 +9435,6 @@ export interface ListSubscriptionsOutput {
|
|
|
9207
9435
|
*/
|
|
9208
9436
|
nextToken?: string;
|
|
9209
9437
|
}
|
|
9210
|
-
/**
|
|
9211
|
-
* @public
|
|
9212
|
-
*/
|
|
9213
|
-
export interface ListSubscriptionTargetsInput {
|
|
9214
|
-
/**
|
|
9215
|
-
* <p>The identifier of the Amazon DataZone domain where you want to list subscription
|
|
9216
|
-
* targets.</p>
|
|
9217
|
-
* @public
|
|
9218
|
-
*/
|
|
9219
|
-
domainIdentifier: string | undefined;
|
|
9220
|
-
/**
|
|
9221
|
-
* <p>The identifier of the environment where you want to list subscription targets.</p>
|
|
9222
|
-
* @public
|
|
9223
|
-
*/
|
|
9224
|
-
environmentIdentifier: string | undefined;
|
|
9225
|
-
/**
|
|
9226
|
-
* <p>Specifies the way in which the results of this action are to be sorted.</p>
|
|
9227
|
-
* @public
|
|
9228
|
-
*/
|
|
9229
|
-
sortBy?: SortKey;
|
|
9230
|
-
/**
|
|
9231
|
-
* <p>Specifies the sort order for the results of this action.</p>
|
|
9232
|
-
* @public
|
|
9233
|
-
*/
|
|
9234
|
-
sortOrder?: SortOrder;
|
|
9235
|
-
/**
|
|
9236
|
-
* <p>The maximum number of subscription targets to return in a single call to
|
|
9237
|
-
* <code>ListSubscriptionTargets</code>. When the number of subscription targets to be
|
|
9238
|
-
* listed is greater than the value of <code>MaxResults</code>, the response contains a
|
|
9239
|
-
* <code>NextToken</code> value that you can use in a subsequent call to
|
|
9240
|
-
* <code>ListSubscriptionTargets</code> to list the next set of subscription targets.
|
|
9241
|
-
* </p>
|
|
9242
|
-
* @public
|
|
9243
|
-
*/
|
|
9244
|
-
maxResults?: number;
|
|
9245
|
-
/**
|
|
9246
|
-
* <p>When the number of subscription targets is greater than the default value for the
|
|
9247
|
-
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
9248
|
-
* <code>MaxResults</code> that is less than the number of subscription targets, the
|
|
9249
|
-
* response includes a pagination token named <code>NextToken</code>. You can specify this
|
|
9250
|
-
* <code>NextToken</code> value in a subsequent call to
|
|
9251
|
-
* <code>ListSubscriptionTargets</code> to list the next set of subscription
|
|
9252
|
-
* targets.</p>
|
|
9253
|
-
* @public
|
|
9254
|
-
*/
|
|
9255
|
-
nextToken?: string;
|
|
9256
|
-
}
|
|
9257
|
-
/**
|
|
9258
|
-
* <p>The details of the subscription target.</p>
|
|
9259
|
-
* @public
|
|
9260
|
-
*/
|
|
9261
|
-
export interface SubscriptionTargetSummary {
|
|
9262
|
-
/**
|
|
9263
|
-
* <p>The identifier of the subscription target.</p>
|
|
9264
|
-
* @public
|
|
9265
|
-
*/
|
|
9266
|
-
id: string | undefined;
|
|
9267
|
-
/**
|
|
9268
|
-
* <p>The authorized principals included in the subscription target.</p>
|
|
9269
|
-
* @public
|
|
9270
|
-
*/
|
|
9271
|
-
authorizedPrincipals: string[] | undefined;
|
|
9272
|
-
/**
|
|
9273
|
-
* <p>The identifier of the Amazon DataZone domain in which the subscription target exists.</p>
|
|
9274
|
-
* @public
|
|
9275
|
-
*/
|
|
9276
|
-
domainId: string | undefined;
|
|
9277
|
-
/**
|
|
9278
|
-
* <p>The identifier of the project specified in the subscription target.</p>
|
|
9279
|
-
* @public
|
|
9280
|
-
*/
|
|
9281
|
-
projectId: string | undefined;
|
|
9282
|
-
/**
|
|
9283
|
-
* <p>The identifier of the environment of the subscription target.</p>
|
|
9284
|
-
* @public
|
|
9285
|
-
*/
|
|
9286
|
-
environmentId: string | undefined;
|
|
9287
|
-
/**
|
|
9288
|
-
* <p>The name of the subscription target.</p>
|
|
9289
|
-
* @public
|
|
9290
|
-
*/
|
|
9291
|
-
name: string | undefined;
|
|
9292
|
-
/**
|
|
9293
|
-
* <p>The type of the subscription target.</p>
|
|
9294
|
-
* @public
|
|
9295
|
-
*/
|
|
9296
|
-
type: string | undefined;
|
|
9297
|
-
/**
|
|
9298
|
-
* <p>The Amazon DataZone user who created the subscription target.</p>
|
|
9299
|
-
* @public
|
|
9300
|
-
*/
|
|
9301
|
-
createdBy: string | undefined;
|
|
9302
|
-
/**
|
|
9303
|
-
* <p>The Amazon DataZone user who updated the subscription target.</p>
|
|
9304
|
-
* @public
|
|
9305
|
-
*/
|
|
9306
|
-
updatedBy?: string;
|
|
9307
|
-
/**
|
|
9308
|
-
* <p>The timestamp of when the subscription target was created.</p>
|
|
9309
|
-
* @public
|
|
9310
|
-
*/
|
|
9311
|
-
createdAt: Date | undefined;
|
|
9312
|
-
/**
|
|
9313
|
-
* <p>The timestamp of when the subscription target was updated.</p>
|
|
9314
|
-
* @public
|
|
9315
|
-
*/
|
|
9316
|
-
updatedAt?: Date;
|
|
9317
|
-
/**
|
|
9318
|
-
* <p>The manage access role specified in the subscription target.</p>
|
|
9319
|
-
* @public
|
|
9320
|
-
*/
|
|
9321
|
-
manageAccessRole: string | undefined;
|
|
9322
|
-
/**
|
|
9323
|
-
* <p>The asset types included in the subscription target.</p>
|
|
9324
|
-
* @public
|
|
9325
|
-
*/
|
|
9326
|
-
applicableAssetTypes: string[] | undefined;
|
|
9327
|
-
/**
|
|
9328
|
-
* <p>The configuration of the subscription target.</p>
|
|
9329
|
-
* @public
|
|
9330
|
-
*/
|
|
9331
|
-
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
9332
|
-
/**
|
|
9333
|
-
* <p>The provider of the subscription target.</p>
|
|
9334
|
-
* @public
|
|
9335
|
-
*/
|
|
9336
|
-
provider: string | undefined;
|
|
9337
|
-
}
|
|
9338
|
-
/**
|
|
9339
|
-
* @public
|
|
9340
|
-
*/
|
|
9341
|
-
export interface ListSubscriptionTargetsOutput {
|
|
9342
|
-
/**
|
|
9343
|
-
* <p>The results of the <code>ListSubscriptionTargets</code> action.</p>
|
|
9344
|
-
* @public
|
|
9345
|
-
*/
|
|
9346
|
-
items: SubscriptionTargetSummary[] | undefined;
|
|
9347
|
-
/**
|
|
9348
|
-
* <p>When the number of subscription targets is greater than the default value for the
|
|
9349
|
-
* <code>MaxResults</code> parameter, or if you explicitly specify a value for
|
|
9350
|
-
* <code>MaxResults</code> that is less than the number of subscription targets, the
|
|
9351
|
-
* response includes a pagination token named <code>NextToken</code>. You can specify this
|
|
9352
|
-
* <code>NextToken</code> value in a subsequent call to
|
|
9353
|
-
* <code>ListSubscriptionTargets</code> to list the next set of subscription
|
|
9354
|
-
* targets.</p>
|
|
9355
|
-
* @public
|
|
9356
|
-
*/
|
|
9357
|
-
nextToken?: string;
|
|
9358
|
-
}
|
|
9359
|
-
/**
|
|
9360
|
-
* @public
|
|
9361
|
-
*/
|
|
9362
|
-
export interface ListTagsForResourceRequest {
|
|
9363
|
-
/**
|
|
9364
|
-
* <p>The ARN of the resource whose tags you want to list.</p>
|
|
9365
|
-
* @public
|
|
9366
|
-
*/
|
|
9367
|
-
resourceArn: string | undefined;
|
|
9368
|
-
}
|
|
9369
|
-
/**
|
|
9370
|
-
* @public
|
|
9371
|
-
*/
|
|
9372
|
-
export interface ListTagsForResourceResponse {
|
|
9373
|
-
/**
|
|
9374
|
-
* <p>The tags of the specified resource.</p>
|
|
9375
|
-
* @public
|
|
9376
|
-
*/
|
|
9377
|
-
tags?: Record<string, string>;
|
|
9378
|
-
}
|
|
9379
|
-
/**
|
|
9380
|
-
* @public
|
|
9381
|
-
*/
|
|
9382
|
-
export interface GetMetadataGenerationRunInput {
|
|
9383
|
-
/**
|
|
9384
|
-
* <p>The ID of the Amazon DataZone domain the metadata generation run of which you want to
|
|
9385
|
-
* get.</p>
|
|
9386
|
-
* @public
|
|
9387
|
-
*/
|
|
9388
|
-
domainIdentifier: string | undefined;
|
|
9389
|
-
/**
|
|
9390
|
-
* <p>The identifier of the metadata generation run.</p>
|
|
9391
|
-
* @public
|
|
9392
|
-
*/
|
|
9393
|
-
identifier: string | undefined;
|
|
9394
|
-
}
|
|
9395
|
-
/**
|
|
9396
|
-
* @public
|
|
9397
|
-
* @enum
|
|
9398
|
-
*/
|
|
9399
|
-
export declare const MetadataGenerationRunStatus: {
|
|
9400
|
-
readonly CANCELED: "CANCELED";
|
|
9401
|
-
readonly FAILED: "FAILED";
|
|
9402
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
9403
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
9404
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
9405
|
-
};
|
|
9406
|
-
/**
|
|
9407
|
-
* @public
|
|
9408
|
-
*/
|
|
9409
|
-
export type MetadataGenerationRunStatus = (typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
9410
9438
|
/**
|
|
9411
9439
|
* @internal
|
|
9412
9440
|
*/
|
|
@@ -9799,11 +9827,3 @@ export declare const SubscriptionSummaryFilterSensitiveLog: (obj: SubscriptionSu
|
|
|
9799
9827
|
* @internal
|
|
9800
9828
|
*/
|
|
9801
9829
|
export declare const ListSubscriptionsOutputFilterSensitiveLog: (obj: ListSubscriptionsOutput) => any;
|
|
9802
|
-
/**
|
|
9803
|
-
* @internal
|
|
9804
|
-
*/
|
|
9805
|
-
export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: SubscriptionTargetSummary) => any;
|
|
9806
|
-
/**
|
|
9807
|
-
* @internal
|
|
9808
|
-
*/
|
|
9809
|
-
export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (obj: ListSubscriptionTargetsOutput) => any;
|