@aws-sdk/client-dataexchange 3.687.0 → 3.691.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/dist-types/models/models_0.d.ts +320 -320
- package/dist-types/ts3.4/models/models_0.d.ts +342 -320
- package/package.json +7 -7
|
@@ -59,7 +59,7 @@ export interface AcceptDataGrantResponse {
|
|
|
59
59
|
* <p>The Amazon Web Services account ID of the data grant sender.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
SenderPrincipal?: string;
|
|
62
|
+
SenderPrincipal?: string | undefined;
|
|
63
63
|
/**
|
|
64
64
|
* <p>The Amazon Web Services account ID of the data grant receiver.</p>
|
|
65
65
|
* @public
|
|
@@ -69,7 +69,7 @@ export interface AcceptDataGrantResponse {
|
|
|
69
69
|
* <p>The description of the accepted data grant.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
Description?: string;
|
|
72
|
+
Description?: string | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>The acceptance state of the data grant.</p>
|
|
75
75
|
* @public
|
|
@@ -79,12 +79,12 @@ export interface AcceptDataGrantResponse {
|
|
|
79
79
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
AcceptedAt?: Date;
|
|
82
|
+
AcceptedAt?: Date | undefined;
|
|
83
83
|
/**
|
|
84
84
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
EndsAt?: Date;
|
|
87
|
+
EndsAt?: Date | undefined;
|
|
88
88
|
/**
|
|
89
89
|
* <p>The distribution scope for the data grant.</p>
|
|
90
90
|
* @public
|
|
@@ -167,12 +167,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
167
167
|
* <p>The unique identifier for the resource with the conflict.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
ResourceId?: string;
|
|
170
|
+
ResourceId?: string | undefined;
|
|
171
171
|
/**
|
|
172
172
|
* <p>The type of the resource with the conflict.</p>
|
|
173
173
|
* @public
|
|
174
174
|
*/
|
|
175
|
-
ResourceType?: ResourceType;
|
|
175
|
+
ResourceType?: ResourceType | undefined;
|
|
176
176
|
/**
|
|
177
177
|
* @internal
|
|
178
178
|
*/
|
|
@@ -211,12 +211,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
211
211
|
* <p>The unique identifier for the resource that couldn't be found.</p>
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
ResourceId?: string;
|
|
214
|
+
ResourceId?: string | undefined;
|
|
215
215
|
/**
|
|
216
216
|
* <p>The type of resource that couldn't be found.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
ResourceType?: ResourceType;
|
|
219
|
+
ResourceType?: ResourceType | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* @internal
|
|
222
222
|
*/
|
|
@@ -267,7 +267,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
267
267
|
* <p>The unique identifier for the resource that couldn't be found.</p>
|
|
268
268
|
* @public
|
|
269
269
|
*/
|
|
270
|
-
ExceptionCause?: ExceptionCause;
|
|
270
|
+
ExceptionCause?: ExceptionCause | undefined;
|
|
271
271
|
/**
|
|
272
272
|
* @internal
|
|
273
273
|
*/
|
|
@@ -296,7 +296,7 @@ export interface ExportServerSideEncryption {
|
|
|
296
296
|
* S3 objects. This parameter is required if you choose aws:kms as an encryption type.</p>
|
|
297
297
|
* @public
|
|
298
298
|
*/
|
|
299
|
-
KmsKeyArn?: string;
|
|
299
|
+
KmsKeyArn?: string | undefined;
|
|
300
300
|
/**
|
|
301
301
|
* <p>The type of server side encryption used for encrypting the objects in Amazon S3.</p>
|
|
302
302
|
* @public
|
|
@@ -319,7 +319,7 @@ export interface AutoExportRevisionDestinationEntry {
|
|
|
319
319
|
* revision. For more information about key patterns, see <a href="https://docs.aws.amazon.com/data-exchange/latest/userguide/jobs.html#revision-export-keypatterns">Key patterns when exporting revisions</a>.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
KeyPattern?: string;
|
|
322
|
+
KeyPattern?: string | undefined;
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* <p>Details of the operation to be performed by the job.</p>
|
|
@@ -330,7 +330,7 @@ export interface AutoExportRevisionToS3RequestDetails {
|
|
|
330
330
|
* <p>Encryption configuration for the auto export job.</p>
|
|
331
331
|
* @public
|
|
332
332
|
*/
|
|
333
|
-
Encryption?: ExportServerSideEncryption;
|
|
333
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
334
334
|
/**
|
|
335
335
|
* <p>A revision destination is the Amazon S3 bucket folder destination to where the export
|
|
336
336
|
* will be sent.</p>
|
|
@@ -347,7 +347,7 @@ export interface Action {
|
|
|
347
347
|
* <p>Details for the export revision to Amazon S3 action.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails;
|
|
350
|
+
ExportRevisionToS3?: AutoExportRevisionToS3RequestDetails | undefined;
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
353
|
* @public
|
|
@@ -369,47 +369,47 @@ export interface ApiGatewayApiAsset {
|
|
|
369
369
|
* <p>The API description of the API asset.</p>
|
|
370
370
|
* @public
|
|
371
371
|
*/
|
|
372
|
-
ApiDescription?: string;
|
|
372
|
+
ApiDescription?: string | undefined;
|
|
373
373
|
/**
|
|
374
374
|
* <p>The API endpoint of the API asset.</p>
|
|
375
375
|
* @public
|
|
376
376
|
*/
|
|
377
|
-
ApiEndpoint?: string;
|
|
377
|
+
ApiEndpoint?: string | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* <p>The unique identifier of the API asset.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
ApiId?: string;
|
|
382
|
+
ApiId?: string | undefined;
|
|
383
383
|
/**
|
|
384
384
|
* <p>The API key of the API asset.</p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
ApiKey?: string;
|
|
387
|
+
ApiKey?: string | undefined;
|
|
388
388
|
/**
|
|
389
389
|
* <p>The API name of the API asset.</p>
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
|
-
ApiName?: string;
|
|
392
|
+
ApiName?: string | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* <p>The download URL of the API specification of the API asset.</p>
|
|
395
395
|
* @public
|
|
396
396
|
*/
|
|
397
|
-
ApiSpecificationDownloadUrl?: string;
|
|
397
|
+
ApiSpecificationDownloadUrl?: string | undefined;
|
|
398
398
|
/**
|
|
399
399
|
* <p>The date and time that the upload URL expires, in ISO 8601 format.</p>
|
|
400
400
|
* @public
|
|
401
401
|
*/
|
|
402
|
-
ApiSpecificationDownloadUrlExpiresAt?: Date;
|
|
402
|
+
ApiSpecificationDownloadUrlExpiresAt?: Date | undefined;
|
|
403
403
|
/**
|
|
404
404
|
* <p>The protocol type of the API asset.</p>
|
|
405
405
|
* @public
|
|
406
406
|
*/
|
|
407
|
-
ProtocolType?: ProtocolType;
|
|
407
|
+
ProtocolType?: ProtocolType | undefined;
|
|
408
408
|
/**
|
|
409
409
|
* <p>The stage of the API asset.</p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
Stage?: string;
|
|
412
|
+
Stage?: string | undefined;
|
|
413
413
|
}
|
|
414
414
|
/**
|
|
415
415
|
* <p>The destination for the asset.</p>
|
|
@@ -430,7 +430,7 @@ export interface AssetDestinationEntry {
|
|
|
430
430
|
* <p>The name of the object in Amazon S3 for the asset.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
Key?: string;
|
|
433
|
+
Key?: string | undefined;
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* <p>A structure that allows an LF-admin to grant permissions on certain conditions.</p>
|
|
@@ -481,13 +481,13 @@ export interface LFResourceDetails {
|
|
|
481
481
|
* permission.</p>
|
|
482
482
|
* @public
|
|
483
483
|
*/
|
|
484
|
-
Database?: DatabaseLFTagPolicy;
|
|
484
|
+
Database?: DatabaseLFTagPolicy | undefined;
|
|
485
485
|
/**
|
|
486
486
|
* <p>Details about the table resource included in the AWS Lake Formation data
|
|
487
487
|
* permission.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
Table?: TableLFTagPolicy;
|
|
490
|
+
Table?: TableLFTagPolicy | undefined;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* @public
|
|
@@ -531,7 +531,7 @@ export interface LakeFormationDataPermissionDetails {
|
|
|
531
531
|
* <p>Details about the LF-tag policy.</p>
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
LFTagPolicy?: LFTagPolicyDetails;
|
|
534
|
+
LFTagPolicy?: LFTagPolicyDetails | undefined;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* @public
|
|
@@ -581,7 +581,7 @@ export interface LakeFormationDataPermissionAsset {
|
|
|
581
581
|
* permissions to AWS Lake Formation data permissions.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
RoleArn?: string;
|
|
584
|
+
RoleArn?: string | undefined;
|
|
585
585
|
}
|
|
586
586
|
/**
|
|
587
587
|
* <p>The Amazon Redshift datashare asset.</p>
|
|
@@ -623,31 +623,31 @@ export interface S3DataAccessAsset {
|
|
|
623
623
|
* <p>The Amazon S3 bucket used for hosting shared data in the Amazon S3 data access.</p>
|
|
624
624
|
* @public
|
|
625
625
|
*/
|
|
626
|
-
KeyPrefixes?: string[];
|
|
626
|
+
KeyPrefixes?: string[] | undefined;
|
|
627
627
|
/**
|
|
628
628
|
* <p>S3 keys made available using this asset.</p>
|
|
629
629
|
* @public
|
|
630
630
|
*/
|
|
631
|
-
Keys?: string[];
|
|
631
|
+
Keys?: string[] | undefined;
|
|
632
632
|
/**
|
|
633
633
|
* <p>The automatically-generated bucket-style alias for your Amazon S3 Access Point.
|
|
634
634
|
* Customers can access their entitled data using the S3 Access Point alias.</p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
S3AccessPointAlias?: string;
|
|
637
|
+
S3AccessPointAlias?: string | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>The ARN for your Amazon S3 Access Point. Customers can also access their entitled data
|
|
640
640
|
* using the S3 Access Point ARN.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
S3AccessPointArn?: string;
|
|
643
|
+
S3AccessPointArn?: string | undefined;
|
|
644
644
|
/**
|
|
645
645
|
* <p> List of AWS KMS CMKs (Key Management System Customer Managed Keys) and ARNs used to
|
|
646
646
|
* encrypt S3 objects being shared in this S3 Data Access asset. Providers must include all
|
|
647
647
|
* AWS KMS keys used to encrypt these shared S3 objects.</p>
|
|
648
648
|
* @public
|
|
649
649
|
*/
|
|
650
|
-
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
650
|
+
KmsKeysToGrant?: KmsKeyToGrant[] | undefined;
|
|
651
651
|
}
|
|
652
652
|
/**
|
|
653
653
|
* <p>The Amazon S3 object that is the asset.</p>
|
|
@@ -669,27 +669,27 @@ export interface AssetDetails {
|
|
|
669
669
|
* <p>The Amazon S3 object that is the asset.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
S3SnapshotAsset?: S3SnapshotAsset;
|
|
672
|
+
S3SnapshotAsset?: S3SnapshotAsset | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>The Amazon Redshift datashare that is the asset.</p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
RedshiftDataShareAsset?: RedshiftDataShareAsset;
|
|
677
|
+
RedshiftDataShareAsset?: RedshiftDataShareAsset | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>Information about the API Gateway API asset.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
ApiGatewayApiAsset?: ApiGatewayApiAsset;
|
|
682
|
+
ApiGatewayApiAsset?: ApiGatewayApiAsset | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>The Amazon S3 data access that is the asset.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
S3DataAccessAsset?: S3DataAccessAsset;
|
|
687
|
+
S3DataAccessAsset?: S3DataAccessAsset | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>The AWS Lake Formation data permission that is the asset.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset;
|
|
692
|
+
LakeFormationDataPermissionAsset?: LakeFormationDataPermissionAsset | undefined;
|
|
693
693
|
}
|
|
694
694
|
/**
|
|
695
695
|
* @public
|
|
@@ -770,7 +770,7 @@ export interface AssetEntry {
|
|
|
770
770
|
* asset.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
SourceId?: string;
|
|
773
|
+
SourceId?: string | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>The date and time that the asset was last updated, in ISO 8601 format.</p>
|
|
776
776
|
* @public
|
|
@@ -848,17 +848,17 @@ export interface CreateDataGrantRequest {
|
|
|
848
848
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
EndsAt?: Date;
|
|
851
|
+
EndsAt?: Date | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* <p>The description of the data grant.</p>
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
Description?: string;
|
|
856
|
+
Description?: string | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* <p>The tags to add to the data grant. A tag is a key-value pair.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
Tags?: Record<string, string
|
|
861
|
+
Tags?: Record<string, string> | undefined;
|
|
862
862
|
}
|
|
863
863
|
/**
|
|
864
864
|
* @public
|
|
@@ -883,7 +883,7 @@ export interface CreateDataGrantResponse {
|
|
|
883
883
|
* <p>The description of the data grant.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
Description?: string;
|
|
886
|
+
Description?: string | undefined;
|
|
887
887
|
/**
|
|
888
888
|
* <p>The acceptance state of the data grant.</p>
|
|
889
889
|
* @public
|
|
@@ -893,12 +893,12 @@ export interface CreateDataGrantResponse {
|
|
|
893
893
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
AcceptedAt?: Date;
|
|
896
|
+
AcceptedAt?: Date | undefined;
|
|
897
897
|
/**
|
|
898
898
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
899
899
|
* @public
|
|
900
900
|
*/
|
|
901
|
-
EndsAt?: Date;
|
|
901
|
+
EndsAt?: Date | undefined;
|
|
902
902
|
/**
|
|
903
903
|
* <p>The distribution scope for the data grant.</p>
|
|
904
904
|
* @public
|
|
@@ -938,7 +938,7 @@ export interface CreateDataGrantResponse {
|
|
|
938
938
|
* <p>The tags associated to the data grant. A tag is a key-value pair.</p>
|
|
939
939
|
* @public
|
|
940
940
|
*/
|
|
941
|
-
Tags?: Record<string, string
|
|
941
|
+
Tags?: Record<string, string> | undefined;
|
|
942
942
|
}
|
|
943
943
|
/**
|
|
944
944
|
* @public
|
|
@@ -991,12 +991,12 @@ export declare class ServiceLimitExceededException extends __BaseException {
|
|
|
991
991
|
* <p>The name of the limit that was reached.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
LimitName?: LimitName;
|
|
994
|
+
LimitName?: LimitName | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>The value of the exceeded limit.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
LimitValue?: number;
|
|
999
|
+
LimitValue?: number | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>The request has exceeded the quotas imposed by the service.</p>
|
|
1002
1002
|
* @public
|
|
@@ -1033,7 +1033,7 @@ export interface CreateDataSetRequest {
|
|
|
1033
1033
|
* these data sets and revisions.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
Tags?: Record<string, string
|
|
1036
|
+
Tags?: Record<string, string> | undefined;
|
|
1037
1037
|
}
|
|
1038
1038
|
/**
|
|
1039
1039
|
* @public
|
|
@@ -1056,12 +1056,12 @@ export interface OriginDetails {
|
|
|
1056
1056
|
* <p>The product ID of the origin of the data set.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
ProductId?: string;
|
|
1059
|
+
ProductId?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The ID of the data grant.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
DataGrantId?: string;
|
|
1064
|
+
DataGrantId?: string | undefined;
|
|
1065
1065
|
}
|
|
1066
1066
|
/**
|
|
1067
1067
|
* @public
|
|
@@ -1071,61 +1071,61 @@ export interface CreateDataSetResponse {
|
|
|
1071
1071
|
* <p>The ARN for the data set.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
Arn?: string;
|
|
1074
|
+
Arn?: string | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* <p>The type of asset that is added to a data set.</p>
|
|
1077
1077
|
* @public
|
|
1078
1078
|
*/
|
|
1079
|
-
AssetType?: AssetType;
|
|
1079
|
+
AssetType?: AssetType | undefined;
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p>The date and time that the data set was created, in ISO 8601 format.</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
CreatedAt?: Date;
|
|
1084
|
+
CreatedAt?: Date | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>The description for the data set.</p>
|
|
1087
1087
|
* @public
|
|
1088
1088
|
*/
|
|
1089
|
-
Description?: string;
|
|
1089
|
+
Description?: string | undefined;
|
|
1090
1090
|
/**
|
|
1091
1091
|
* <p>The unique identifier for the data set.</p>
|
|
1092
1092
|
* @public
|
|
1093
1093
|
*/
|
|
1094
|
-
Id?: string;
|
|
1094
|
+
Id?: string | undefined;
|
|
1095
1095
|
/**
|
|
1096
1096
|
* <p>The name of the data set.</p>
|
|
1097
1097
|
* @public
|
|
1098
1098
|
*/
|
|
1099
|
-
Name?: string;
|
|
1099
|
+
Name?: string | undefined;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* <p>A property that defines the data set as OWNED by the account (for providers) or ENTITLED
|
|
1102
1102
|
* to the account (for subscribers).</p>
|
|
1103
1103
|
* @public
|
|
1104
1104
|
*/
|
|
1105
|
-
Origin?: Origin;
|
|
1105
|
+
Origin?: Origin | undefined;
|
|
1106
1106
|
/**
|
|
1107
1107
|
* <p>If the origin of this data set is ENTITLED, includes the details for the product on AWS
|
|
1108
1108
|
* Marketplace.</p>
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
OriginDetails?: OriginDetails;
|
|
1111
|
+
OriginDetails?: OriginDetails | undefined;
|
|
1112
1112
|
/**
|
|
1113
1113
|
* <p>The data set ID of the owned data set corresponding to the entitled data set being
|
|
1114
1114
|
* viewed. This parameter is returned when a data set owner is viewing the entitled copy of
|
|
1115
1115
|
* its owned data set.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
SourceId?: string;
|
|
1118
|
+
SourceId?: string | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>The tags for the data set.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
Tags?: Record<string, string
|
|
1123
|
+
Tags?: Record<string, string> | undefined;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* <p>The date and time that the data set was last updated, in ISO 8601 format.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
UpdatedAt?: Date;
|
|
1128
|
+
UpdatedAt?: Date | undefined;
|
|
1129
1129
|
}
|
|
1130
1130
|
/**
|
|
1131
1131
|
* <p>Information about the published revision.</p>
|
|
@@ -1147,7 +1147,7 @@ export interface Event {
|
|
|
1147
1147
|
* <p>What occurs to start the revision publish action.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
RevisionPublished?: RevisionPublished;
|
|
1150
|
+
RevisionPublished?: RevisionPublished | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
/**
|
|
1153
1153
|
* @public
|
|
@@ -1172,32 +1172,32 @@ export interface CreateEventActionResponse {
|
|
|
1172
1172
|
* <p>What occurs after a certain event.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
Action?: Action;
|
|
1175
|
+
Action?: Action | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>The ARN for the event action.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
Arn?: string;
|
|
1180
|
+
Arn?: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The date and time that the event action was created, in ISO 8601 format.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
CreatedAt?: Date;
|
|
1185
|
+
CreatedAt?: Date | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* <p>What occurs to start an action.</p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
Event?: Event;
|
|
1190
|
+
Event?: Event | undefined;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* <p>The unique identifier for the event action.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
Id?: string;
|
|
1195
|
+
Id?: string | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* <p>The date and time that the event action was last updated, in ISO 8601 format.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
UpdatedAt?: Date;
|
|
1200
|
+
UpdatedAt?: Date | undefined;
|
|
1201
1201
|
}
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>Source details for an Amazon S3 data access asset.</p>
|
|
@@ -1213,18 +1213,18 @@ export interface S3DataAccessAssetSourceEntry {
|
|
|
1213
1213
|
* <p>Organizes Amazon S3 asset key prefixes stored in an Amazon S3 bucket.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
KeyPrefixes?: string[];
|
|
1216
|
+
KeyPrefixes?: string[] | undefined;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* <p>The keys used to create the Amazon S3 data access.</p>
|
|
1219
1219
|
* @public
|
|
1220
1220
|
*/
|
|
1221
|
-
Keys?: string[];
|
|
1221
|
+
Keys?: string[] | undefined;
|
|
1222
1222
|
/**
|
|
1223
1223
|
* <p>List of AWS KMS CMKs (Key Management System Customer Managed Keys) and ARNs used to
|
|
1224
1224
|
* encrypt S3 objects being shared in this S3 Data Access asset.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
KmsKeysToGrant?: KmsKeyToGrant[];
|
|
1227
|
+
KmsKeysToGrant?: KmsKeyToGrant[] | undefined;
|
|
1228
1228
|
}
|
|
1229
1229
|
/**
|
|
1230
1230
|
* <p>Details of the operation to create an Amazon S3 data access from an S3 bucket.</p>
|
|
@@ -1267,7 +1267,7 @@ export interface ExportAssetsToS3RequestDetails {
|
|
|
1267
1267
|
* <p>Encryption configuration for the export job.</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
Encryption?: ExportServerSideEncryption;
|
|
1270
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* <p>The unique identifier for the revision associated with this export request.</p>
|
|
1273
1273
|
* @public
|
|
@@ -1310,7 +1310,7 @@ export interface RevisionDestinationEntry {
|
|
|
1310
1310
|
* revision. For more information about key patterns, see <a href="https://docs.aws.amazon.com/data-exchange/latest/userguide/jobs.html#revision-export-keypatterns">Key patterns when exporting revisions</a>.</p>
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
|
-
KeyPattern?: string;
|
|
1313
|
+
KeyPattern?: string | undefined;
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p>The unique identifier for the revision.</p>
|
|
1316
1316
|
* @public
|
|
@@ -1331,7 +1331,7 @@ export interface ExportRevisionsToS3RequestDetails {
|
|
|
1331
1331
|
* <p>Encryption configuration for the export job.</p>
|
|
1332
1332
|
* @public
|
|
1333
1333
|
*/
|
|
1334
|
-
Encryption?: ExportServerSideEncryption;
|
|
1334
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* <p>The destination for the revision.</p>
|
|
1337
1337
|
* @public
|
|
@@ -1347,7 +1347,7 @@ export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
|
1347
1347
|
* <p>The API description. Markdown supported.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
ApiDescription?: string;
|
|
1350
|
+
ApiDescription?: string | undefined;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* <p>The API Gateway API ID.</p>
|
|
1353
1353
|
* @public
|
|
@@ -1357,7 +1357,7 @@ export interface ImportAssetFromApiGatewayApiRequestDetails {
|
|
|
1357
1357
|
* <p>The API Gateway API key.</p>
|
|
1358
1358
|
* @public
|
|
1359
1359
|
*/
|
|
1360
|
-
ApiKey?: string;
|
|
1360
|
+
ApiKey?: string | undefined;
|
|
1361
1361
|
/**
|
|
1362
1362
|
* <p>The API name.</p>
|
|
1363
1363
|
* @public
|
|
@@ -1487,12 +1487,12 @@ export interface ImportAssetsFromLakeFormationTagPolicyRequestDetails {
|
|
|
1487
1487
|
* <p>A structure for the database object.</p>
|
|
1488
1488
|
* @public
|
|
1489
1489
|
*/
|
|
1490
|
-
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
1490
|
+
Database?: DatabaseLFTagPolicyAndPermissions | undefined;
|
|
1491
1491
|
/**
|
|
1492
1492
|
* <p>A structure for the table object.</p>
|
|
1493
1493
|
* @public
|
|
1494
1494
|
*/
|
|
1495
|
-
Table?: TableLFTagPolicyAndPermissions;
|
|
1495
|
+
Table?: TableLFTagPolicyAndPermissions | undefined;
|
|
1496
1496
|
/**
|
|
1497
1497
|
* <p>The IAM role's ARN that allows AWS Data Exchange to assume the role and grant and revoke
|
|
1498
1498
|
* permissions of subscribers to AWS Lake Formation data permissions.</p>
|
|
@@ -1572,47 +1572,47 @@ export interface RequestDetails {
|
|
|
1572
1572
|
* <p>Details about the export to signed URL request.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails;
|
|
1575
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlRequestDetails | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>Details about the export to Amazon S3 request.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
ExportAssetsToS3?: ExportAssetsToS3RequestDetails;
|
|
1580
|
+
ExportAssetsToS3?: ExportAssetsToS3RequestDetails | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>Details about the export to Amazon S3 request.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails;
|
|
1585
|
+
ExportRevisionsToS3?: ExportRevisionsToS3RequestDetails | undefined;
|
|
1586
1586
|
/**
|
|
1587
1587
|
* <p>Details about the import from Amazon S3 request.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails;
|
|
1590
|
+
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlRequestDetails | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>Details about the import asset from API Gateway API request.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails;
|
|
1595
|
+
ImportAssetsFromS3?: ImportAssetsFromS3RequestDetails | undefined;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* <p>Details from an import from Amazon Redshift datashare request.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails;
|
|
1600
|
+
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesRequestDetails | undefined;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* <p>Details about the import from signed URL request.</p>
|
|
1603
1603
|
* @public
|
|
1604
1604
|
*/
|
|
1605
|
-
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails;
|
|
1605
|
+
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiRequestDetails | undefined;
|
|
1606
1606
|
/**
|
|
1607
1607
|
* <p>Details of the request to create S3 data access from the Amazon S3 bucket.</p>
|
|
1608
1608
|
* @public
|
|
1609
1609
|
*/
|
|
1610
|
-
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketRequestDetails;
|
|
1610
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketRequestDetails | undefined;
|
|
1611
1611
|
/**
|
|
1612
1612
|
* <p>Request details for the ImportAssetsFromLakeFormationTagPolicy job.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails;
|
|
1615
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyRequestDetails | undefined;
|
|
1616
1616
|
}
|
|
1617
1617
|
/**
|
|
1618
1618
|
* @public
|
|
@@ -1689,7 +1689,7 @@ export interface ExportAssetsToS3ResponseDetails {
|
|
|
1689
1689
|
* <p>Encryption configuration of the export job.</p>
|
|
1690
1690
|
* @public
|
|
1691
1691
|
*/
|
|
1692
|
-
Encryption?: ExportServerSideEncryption;
|
|
1692
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
1693
1693
|
/**
|
|
1694
1694
|
* <p>The unique identifier for the revision associated with this export response.</p>
|
|
1695
1695
|
* @public
|
|
@@ -1720,12 +1720,12 @@ export interface ExportAssetToSignedUrlResponseDetails {
|
|
|
1720
1720
|
* <p>The signed URL for the export request.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
SignedUrl?: string;
|
|
1723
|
+
SignedUrl?: string | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>The date and time that the signed URL expires, in ISO 8601 format.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
SignedUrlExpiresAt?: Date;
|
|
1728
|
+
SignedUrlExpiresAt?: Date | undefined;
|
|
1729
1729
|
}
|
|
1730
1730
|
/**
|
|
1731
1731
|
* <p>Details about the export revisions to Amazon S3 response.</p>
|
|
@@ -1741,7 +1741,7 @@ export interface ExportRevisionsToS3ResponseDetails {
|
|
|
1741
1741
|
* <p>Encryption configuration of the export job.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
Encryption?: ExportServerSideEncryption;
|
|
1744
|
+
Encryption?: ExportServerSideEncryption | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>The destination in Amazon S3 where the revision is exported.</p>
|
|
1747
1747
|
* @public
|
|
@@ -1751,7 +1751,7 @@ export interface ExportRevisionsToS3ResponseDetails {
|
|
|
1751
1751
|
* <p>The Amazon Resource Name (ARN) of the event action.</p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
EventActionArn?: string;
|
|
1754
|
+
EventActionArn?: string | undefined;
|
|
1755
1755
|
}
|
|
1756
1756
|
/**
|
|
1757
1757
|
* <p>The response details.</p>
|
|
@@ -1762,7 +1762,7 @@ export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
|
1762
1762
|
* <p>The API description.</p>
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
ApiDescription?: string;
|
|
1765
|
+
ApiDescription?: string | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* <p>The API ID.</p>
|
|
1768
1768
|
* @public
|
|
@@ -1772,7 +1772,7 @@ export interface ImportAssetFromApiGatewayApiResponseDetails {
|
|
|
1772
1772
|
* <p>The API key.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
ApiKey?: string;
|
|
1775
|
+
ApiKey?: string | undefined;
|
|
1776
1776
|
/**
|
|
1777
1777
|
* <p>The API name.</p>
|
|
1778
1778
|
* @public
|
|
@@ -1836,7 +1836,7 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
1836
1836
|
* that location.</p>
|
|
1837
1837
|
* @public
|
|
1838
1838
|
*/
|
|
1839
|
-
Md5Hash?: string;
|
|
1839
|
+
Md5Hash?: string | undefined;
|
|
1840
1840
|
/**
|
|
1841
1841
|
* <p>The unique identifier for the revision associated with this import response.</p>
|
|
1842
1842
|
* @public
|
|
@@ -1846,12 +1846,12 @@ export interface ImportAssetFromSignedUrlResponseDetails {
|
|
|
1846
1846
|
* <p>The signed URL.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
SignedUrl?: string;
|
|
1849
|
+
SignedUrl?: string | undefined;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* <p>The time and date at which the signed URL expires, in ISO 8601 format.</p>
|
|
1852
1852
|
* @public
|
|
1853
1853
|
*/
|
|
1854
|
-
SignedUrlExpiresAt?: Date;
|
|
1854
|
+
SignedUrlExpiresAt?: Date | undefined;
|
|
1855
1855
|
}
|
|
1856
1856
|
/**
|
|
1857
1857
|
* <p>Details from an import AWS Lake Formation tag policy job response.</p>
|
|
@@ -1867,12 +1867,12 @@ export interface ImportAssetsFromLakeFormationTagPolicyResponseDetails {
|
|
|
1867
1867
|
* <p>A structure for the database object.</p>
|
|
1868
1868
|
* @public
|
|
1869
1869
|
*/
|
|
1870
|
-
Database?: DatabaseLFTagPolicyAndPermissions;
|
|
1870
|
+
Database?: DatabaseLFTagPolicyAndPermissions | undefined;
|
|
1871
1871
|
/**
|
|
1872
1872
|
* <p>A structure for the table object.</p>
|
|
1873
1873
|
* @public
|
|
1874
1874
|
*/
|
|
1875
|
-
Table?: TableLFTagPolicyAndPermissions;
|
|
1875
|
+
Table?: TableLFTagPolicyAndPermissions | undefined;
|
|
1876
1876
|
/**
|
|
1877
1877
|
* <p>The IAM role's ARN that allows AWS Data Exchange to assume the role and grant and revoke
|
|
1878
1878
|
* permissions to AWS Lake Formation data permissions.</p>
|
|
@@ -1941,47 +1941,47 @@ export interface ResponseDetails {
|
|
|
1941
1941
|
* <p>Details for the export to signed URL response.</p>
|
|
1942
1942
|
* @public
|
|
1943
1943
|
*/
|
|
1944
|
-
ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails;
|
|
1944
|
+
ExportAssetToSignedUrl?: ExportAssetToSignedUrlResponseDetails | undefined;
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>Details for the export to Amazon S3 response.</p>
|
|
1947
1947
|
* @public
|
|
1948
1948
|
*/
|
|
1949
|
-
ExportAssetsToS3?: ExportAssetsToS3ResponseDetails;
|
|
1949
|
+
ExportAssetsToS3?: ExportAssetsToS3ResponseDetails | undefined;
|
|
1950
1950
|
/**
|
|
1951
1951
|
* <p>Details for the export revisions to Amazon S3 response.</p>
|
|
1952
1952
|
* @public
|
|
1953
1953
|
*/
|
|
1954
|
-
ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails;
|
|
1954
|
+
ExportRevisionsToS3?: ExportRevisionsToS3ResponseDetails | undefined;
|
|
1955
1955
|
/**
|
|
1956
1956
|
* <p>Details for the import from signed URL response.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlResponseDetails;
|
|
1959
|
+
ImportAssetFromSignedUrl?: ImportAssetFromSignedUrlResponseDetails | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>Details for the import from Amazon S3 response.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails;
|
|
1964
|
+
ImportAssetsFromS3?: ImportAssetsFromS3ResponseDetails | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>Details from an import from Amazon Redshift datashare response.</p>
|
|
1967
1967
|
* @public
|
|
1968
1968
|
*/
|
|
1969
|
-
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails;
|
|
1969
|
+
ImportAssetsFromRedshiftDataShares?: ImportAssetsFromRedshiftDataSharesResponseDetails | undefined;
|
|
1970
1970
|
/**
|
|
1971
1971
|
* <p>The response details.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails;
|
|
1974
|
+
ImportAssetFromApiGatewayApi?: ImportAssetFromApiGatewayApiResponseDetails | undefined;
|
|
1975
1975
|
/**
|
|
1976
1976
|
* <p>Response details from the CreateS3DataAccessFromS3Bucket job.</p>
|
|
1977
1977
|
* @public
|
|
1978
1978
|
*/
|
|
1979
|
-
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketResponseDetails;
|
|
1979
|
+
CreateS3DataAccessFromS3Bucket?: CreateS3DataAccessFromS3BucketResponseDetails | undefined;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* <p>Response details from the ImportAssetsFromLakeFormationTagPolicy job.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyResponseDetails;
|
|
1984
|
+
ImportAssetsFromLakeFormationTagPolicy?: ImportAssetsFromLakeFormationTagPolicyResponseDetails | undefined;
|
|
1985
1985
|
}
|
|
1986
1986
|
/**
|
|
1987
1987
|
* <p>Details about the job error.</p>
|
|
@@ -2003,12 +2003,12 @@ export interface Details {
|
|
|
2003
2003
|
* <p>Information about the job error.</p>
|
|
2004
2004
|
* @public
|
|
2005
2005
|
*/
|
|
2006
|
-
ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails;
|
|
2006
|
+
ImportAssetFromSignedUrlJobErrorDetails?: ImportAssetFromSignedUrlJobErrorDetails | undefined;
|
|
2007
2007
|
/**
|
|
2008
2008
|
* <p>Details about the job error.</p>
|
|
2009
2009
|
* @public
|
|
2010
2010
|
*/
|
|
2011
|
-
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[];
|
|
2011
|
+
ImportAssetsFromS3JobErrorDetails?: AssetSourceEntry[] | undefined;
|
|
2012
2012
|
}
|
|
2013
2013
|
/**
|
|
2014
2014
|
* @public
|
|
@@ -2052,17 +2052,17 @@ export interface JobError {
|
|
|
2052
2052
|
* <p>The details about the job error.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
Details?: Details;
|
|
2055
|
+
Details?: Details | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>The name of the limit that was reached.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
LimitName?: JobErrorLimitName;
|
|
2060
|
+
LimitName?: JobErrorLimitName | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>The value of the exceeded limit.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
LimitValue?: number;
|
|
2065
|
+
LimitValue?: number | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The message related to the job error.</p>
|
|
2068
2068
|
* @public
|
|
@@ -2072,12 +2072,12 @@ export interface JobError {
|
|
|
2072
2072
|
* <p>The unique identifier for the resource related to the error.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
ResourceId?: string;
|
|
2075
|
+
ResourceId?: string | undefined;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>The type of resource related to the error.</p>
|
|
2078
2078
|
* @public
|
|
2079
2079
|
*/
|
|
2080
|
-
ResourceType?: JobErrorResourceTypes;
|
|
2080
|
+
ResourceType?: JobErrorResourceTypes | undefined;
|
|
2081
2081
|
}
|
|
2082
2082
|
/**
|
|
2083
2083
|
* @public
|
|
@@ -2103,42 +2103,42 @@ export interface CreateJobResponse {
|
|
|
2103
2103
|
* <p>The ARN for the job.</p>
|
|
2104
2104
|
* @public
|
|
2105
2105
|
*/
|
|
2106
|
-
Arn?: string;
|
|
2106
|
+
Arn?: string | undefined;
|
|
2107
2107
|
/**
|
|
2108
2108
|
* <p>The date and time that the job was created, in ISO 8601 format.</p>
|
|
2109
2109
|
* @public
|
|
2110
2110
|
*/
|
|
2111
|
-
CreatedAt?: Date;
|
|
2111
|
+
CreatedAt?: Date | undefined;
|
|
2112
2112
|
/**
|
|
2113
2113
|
* <p>Details about the job.</p>
|
|
2114
2114
|
* @public
|
|
2115
2115
|
*/
|
|
2116
|
-
Details?: ResponseDetails;
|
|
2116
|
+
Details?: ResponseDetails | undefined;
|
|
2117
2117
|
/**
|
|
2118
2118
|
* <p>The errors associated with jobs.</p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
Errors?: JobError[];
|
|
2121
|
+
Errors?: JobError[] | undefined;
|
|
2122
2122
|
/**
|
|
2123
2123
|
* <p>The unique identifier for the job.</p>
|
|
2124
2124
|
* @public
|
|
2125
2125
|
*/
|
|
2126
|
-
Id?: string;
|
|
2126
|
+
Id?: string | undefined;
|
|
2127
2127
|
/**
|
|
2128
2128
|
* <p>The state of the job.</p>
|
|
2129
2129
|
* @public
|
|
2130
2130
|
*/
|
|
2131
|
-
State?: State;
|
|
2131
|
+
State?: State | undefined;
|
|
2132
2132
|
/**
|
|
2133
2133
|
* <p>The job type.</p>
|
|
2134
2134
|
* @public
|
|
2135
2135
|
*/
|
|
2136
|
-
Type?: Type;
|
|
2136
|
+
Type?: Type | undefined;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* <p>The date and time that the job was last updated, in ISO 8601 format.</p>
|
|
2139
2139
|
* @public
|
|
2140
2140
|
*/
|
|
2141
|
-
UpdatedAt?: Date;
|
|
2141
|
+
UpdatedAt?: Date | undefined;
|
|
2142
2142
|
}
|
|
2143
2143
|
/**
|
|
2144
2144
|
* @public
|
|
@@ -2148,7 +2148,7 @@ export interface CreateRevisionRequest {
|
|
|
2148
2148
|
* <p>An optional comment about the revision.</p>
|
|
2149
2149
|
* @public
|
|
2150
2150
|
*/
|
|
2151
|
-
Comment?: string;
|
|
2151
|
+
Comment?: string | undefined;
|
|
2152
2152
|
/**
|
|
2153
2153
|
* <p>The unique identifier for a data set.</p>
|
|
2154
2154
|
* @public
|
|
@@ -2161,7 +2161,7 @@ export interface CreateRevisionRequest {
|
|
|
2161
2161
|
* these data sets and revisions.</p>
|
|
2162
2162
|
* @public
|
|
2163
2163
|
*/
|
|
2164
|
-
Tags?: Record<string, string
|
|
2164
|
+
Tags?: Record<string, string> | undefined;
|
|
2165
2165
|
}
|
|
2166
2166
|
/**
|
|
2167
2167
|
* @public
|
|
@@ -2171,22 +2171,22 @@ export interface CreateRevisionResponse {
|
|
|
2171
2171
|
* <p>The ARN for the revision.</p>
|
|
2172
2172
|
* @public
|
|
2173
2173
|
*/
|
|
2174
|
-
Arn?: string;
|
|
2174
|
+
Arn?: string | undefined;
|
|
2175
2175
|
/**
|
|
2176
2176
|
* <p>An optional comment about the revision.</p>
|
|
2177
2177
|
* @public
|
|
2178
2178
|
*/
|
|
2179
|
-
Comment?: string;
|
|
2179
|
+
Comment?: string | undefined;
|
|
2180
2180
|
/**
|
|
2181
2181
|
* <p>The date and time that the revision was created, in ISO 8601 format.</p>
|
|
2182
2182
|
* @public
|
|
2183
2183
|
*/
|
|
2184
|
-
CreatedAt?: Date;
|
|
2184
|
+
CreatedAt?: Date | undefined;
|
|
2185
2185
|
/**
|
|
2186
2186
|
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
DataSetId?: string;
|
|
2189
|
+
DataSetId?: string | undefined;
|
|
2190
2190
|
/**
|
|
2191
2191
|
* <p>To publish a revision to a data set in a product, the revision must first be finalized.
|
|
2192
2192
|
* Finalizing a revision tells AWS Data Exchange that your changes to the assets in the
|
|
@@ -2196,45 +2196,45 @@ export interface CreateRevisionResponse {
|
|
|
2196
2196
|
* action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
|
-
Finalized?: boolean;
|
|
2199
|
+
Finalized?: boolean | undefined;
|
|
2200
2200
|
/**
|
|
2201
2201
|
* <p>The unique identifier for the revision.</p>
|
|
2202
2202
|
* @public
|
|
2203
2203
|
*/
|
|
2204
|
-
Id?: string;
|
|
2204
|
+
Id?: string | undefined;
|
|
2205
2205
|
/**
|
|
2206
2206
|
* <p>The revision ID of the owned revision corresponding to the entitled revision being
|
|
2207
2207
|
* viewed. This parameter is returned when a revision owner is viewing the entitled copy of
|
|
2208
2208
|
* its owned revision.</p>
|
|
2209
2209
|
* @public
|
|
2210
2210
|
*/
|
|
2211
|
-
SourceId?: string;
|
|
2211
|
+
SourceId?: string | undefined;
|
|
2212
2212
|
/**
|
|
2213
2213
|
* <p>The tags for the revision.</p>
|
|
2214
2214
|
* @public
|
|
2215
2215
|
*/
|
|
2216
|
-
Tags?: Record<string, string
|
|
2216
|
+
Tags?: Record<string, string> | undefined;
|
|
2217
2217
|
/**
|
|
2218
2218
|
* <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
|
|
2219
2219
|
* @public
|
|
2220
2220
|
*/
|
|
2221
|
-
UpdatedAt?: Date;
|
|
2221
|
+
UpdatedAt?: Date | undefined;
|
|
2222
2222
|
/**
|
|
2223
2223
|
* <p>A required comment to inform subscribers of the reason their access to the revision was
|
|
2224
2224
|
* revoked.</p>
|
|
2225
2225
|
* @public
|
|
2226
2226
|
*/
|
|
2227
|
-
RevocationComment?: string;
|
|
2227
|
+
RevocationComment?: string | undefined;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* <p>A status indicating that subscribers' access to the revision was revoked.</p>
|
|
2230
2230
|
* @public
|
|
2231
2231
|
*/
|
|
2232
|
-
Revoked?: boolean;
|
|
2232
|
+
Revoked?: boolean | undefined;
|
|
2233
2233
|
/**
|
|
2234
2234
|
* <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
RevokedAt?: Date;
|
|
2237
|
+
RevokedAt?: Date | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* @public
|
|
@@ -2329,32 +2329,32 @@ export interface GetAssetResponse {
|
|
|
2329
2329
|
* <p>The ARN for the asset.</p>
|
|
2330
2330
|
* @public
|
|
2331
2331
|
*/
|
|
2332
|
-
Arn?: string;
|
|
2332
|
+
Arn?: string | undefined;
|
|
2333
2333
|
/**
|
|
2334
2334
|
* <p>Details about the asset.</p>
|
|
2335
2335
|
* @public
|
|
2336
2336
|
*/
|
|
2337
|
-
AssetDetails?: AssetDetails;
|
|
2337
|
+
AssetDetails?: AssetDetails | undefined;
|
|
2338
2338
|
/**
|
|
2339
2339
|
* <p>The type of asset that is added to a data set.</p>
|
|
2340
2340
|
* @public
|
|
2341
2341
|
*/
|
|
2342
|
-
AssetType?: AssetType;
|
|
2342
|
+
AssetType?: AssetType | undefined;
|
|
2343
2343
|
/**
|
|
2344
2344
|
* <p>The date and time that the asset was created, in ISO 8601 format.</p>
|
|
2345
2345
|
* @public
|
|
2346
2346
|
*/
|
|
2347
|
-
CreatedAt?: Date;
|
|
2347
|
+
CreatedAt?: Date | undefined;
|
|
2348
2348
|
/**
|
|
2349
2349
|
* <p>The unique identifier for the data set associated with this asset.</p>
|
|
2350
2350
|
* @public
|
|
2351
2351
|
*/
|
|
2352
|
-
DataSetId?: string;
|
|
2352
|
+
DataSetId?: string | undefined;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* <p>The unique identifier for the asset.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
Id?: string;
|
|
2357
|
+
Id?: string | undefined;
|
|
2358
2358
|
/**
|
|
2359
2359
|
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
2360
2360
|
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
@@ -2365,24 +2365,24 @@ export interface GetAssetResponse {
|
|
|
2365
2365
|
* asset name.</p>
|
|
2366
2366
|
* @public
|
|
2367
2367
|
*/
|
|
2368
|
-
Name?: string;
|
|
2368
|
+
Name?: string | undefined;
|
|
2369
2369
|
/**
|
|
2370
2370
|
* <p>The unique identifier for the revision associated with this asset.</p>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
RevisionId?: string;
|
|
2373
|
+
RevisionId?: string | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>The asset ID of the owned asset corresponding to the entitled asset being viewed. This
|
|
2376
2376
|
* parameter is returned when an asset owner is viewing the entitled copy of its owned
|
|
2377
2377
|
* asset.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
SourceId?: string;
|
|
2380
|
+
SourceId?: string | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>The date and time that the asset was last updated, in ISO 8601 format.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
UpdatedAt?: Date;
|
|
2385
|
+
UpdatedAt?: Date | undefined;
|
|
2386
2386
|
}
|
|
2387
2387
|
/**
|
|
2388
2388
|
* @public
|
|
@@ -2417,7 +2417,7 @@ export interface GetDataGrantResponse {
|
|
|
2417
2417
|
* <p>The description of the data grant.</p>
|
|
2418
2418
|
* @public
|
|
2419
2419
|
*/
|
|
2420
|
-
Description?: string;
|
|
2420
|
+
Description?: string | undefined;
|
|
2421
2421
|
/**
|
|
2422
2422
|
* <p>The acceptance state of the data grant.</p>
|
|
2423
2423
|
* @public
|
|
@@ -2427,12 +2427,12 @@ export interface GetDataGrantResponse {
|
|
|
2427
2427
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
2428
2428
|
* @public
|
|
2429
2429
|
*/
|
|
2430
|
-
AcceptedAt?: Date;
|
|
2430
|
+
AcceptedAt?: Date | undefined;
|
|
2431
2431
|
/**
|
|
2432
2432
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
2433
2433
|
* @public
|
|
2434
2434
|
*/
|
|
2435
|
-
EndsAt?: Date;
|
|
2435
|
+
EndsAt?: Date | undefined;
|
|
2436
2436
|
/**
|
|
2437
2437
|
* <p>The distribution scope for the data grant.</p>
|
|
2438
2438
|
* @public
|
|
@@ -2472,7 +2472,7 @@ export interface GetDataGrantResponse {
|
|
|
2472
2472
|
* <p>The tags associated to the data grant. A tag is a key-value pair.</p>
|
|
2473
2473
|
* @public
|
|
2474
2474
|
*/
|
|
2475
|
-
Tags?: Record<string, string
|
|
2475
|
+
Tags?: Record<string, string> | undefined;
|
|
2476
2476
|
}
|
|
2477
2477
|
/**
|
|
2478
2478
|
* @public
|
|
@@ -2492,61 +2492,61 @@ export interface GetDataSetResponse {
|
|
|
2492
2492
|
* <p>The ARN for the data set.</p>
|
|
2493
2493
|
* @public
|
|
2494
2494
|
*/
|
|
2495
|
-
Arn?: string;
|
|
2495
|
+
Arn?: string | undefined;
|
|
2496
2496
|
/**
|
|
2497
2497
|
* <p>The type of asset that is added to a data set.</p>
|
|
2498
2498
|
* @public
|
|
2499
2499
|
*/
|
|
2500
|
-
AssetType?: AssetType;
|
|
2500
|
+
AssetType?: AssetType | undefined;
|
|
2501
2501
|
/**
|
|
2502
2502
|
* <p>The date and time that the data set was created, in ISO 8601 format.</p>
|
|
2503
2503
|
* @public
|
|
2504
2504
|
*/
|
|
2505
|
-
CreatedAt?: Date;
|
|
2505
|
+
CreatedAt?: Date | undefined;
|
|
2506
2506
|
/**
|
|
2507
2507
|
* <p>The description for the data set.</p>
|
|
2508
2508
|
* @public
|
|
2509
2509
|
*/
|
|
2510
|
-
Description?: string;
|
|
2510
|
+
Description?: string | undefined;
|
|
2511
2511
|
/**
|
|
2512
2512
|
* <p>The unique identifier for the data set.</p>
|
|
2513
2513
|
* @public
|
|
2514
2514
|
*/
|
|
2515
|
-
Id?: string;
|
|
2515
|
+
Id?: string | undefined;
|
|
2516
2516
|
/**
|
|
2517
2517
|
* <p>The name of the data set.</p>
|
|
2518
2518
|
* @public
|
|
2519
2519
|
*/
|
|
2520
|
-
Name?: string;
|
|
2520
|
+
Name?: string | undefined;
|
|
2521
2521
|
/**
|
|
2522
2522
|
* <p>A property that defines the data set as OWNED by the account (for providers) or ENTITLED
|
|
2523
2523
|
* to the account (for subscribers).</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
Origin?: Origin;
|
|
2526
|
+
Origin?: Origin | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p>If the origin of this data set is ENTITLED, includes the details for the product on AWS
|
|
2529
2529
|
* Marketplace.</p>
|
|
2530
2530
|
* @public
|
|
2531
2531
|
*/
|
|
2532
|
-
OriginDetails?: OriginDetails;
|
|
2532
|
+
OriginDetails?: OriginDetails | undefined;
|
|
2533
2533
|
/**
|
|
2534
2534
|
* <p>The data set ID of the owned data set corresponding to the entitled data set being
|
|
2535
2535
|
* viewed. This parameter is returned when a data set owner is viewing the entitled copy of
|
|
2536
2536
|
* its owned data set.</p>
|
|
2537
2537
|
* @public
|
|
2538
2538
|
*/
|
|
2539
|
-
SourceId?: string;
|
|
2539
|
+
SourceId?: string | undefined;
|
|
2540
2540
|
/**
|
|
2541
2541
|
* <p>The tags for the data set.</p>
|
|
2542
2542
|
* @public
|
|
2543
2543
|
*/
|
|
2544
|
-
Tags?: Record<string, string
|
|
2544
|
+
Tags?: Record<string, string> | undefined;
|
|
2545
2545
|
/**
|
|
2546
2546
|
* <p>The date and time that the data set was last updated, in ISO 8601 format.</p>
|
|
2547
2547
|
* @public
|
|
2548
2548
|
*/
|
|
2549
|
-
UpdatedAt?: Date;
|
|
2549
|
+
UpdatedAt?: Date | undefined;
|
|
2550
2550
|
}
|
|
2551
2551
|
/**
|
|
2552
2552
|
* @public
|
|
@@ -2566,32 +2566,32 @@ export interface GetEventActionResponse {
|
|
|
2566
2566
|
* <p>What occurs after a certain event.</p>
|
|
2567
2567
|
* @public
|
|
2568
2568
|
*/
|
|
2569
|
-
Action?: Action;
|
|
2569
|
+
Action?: Action | undefined;
|
|
2570
2570
|
/**
|
|
2571
2571
|
* <p>The ARN for the event action.</p>
|
|
2572
2572
|
* @public
|
|
2573
2573
|
*/
|
|
2574
|
-
Arn?: string;
|
|
2574
|
+
Arn?: string | undefined;
|
|
2575
2575
|
/**
|
|
2576
2576
|
* <p>The date and time that the event action was created, in ISO 8601 format.</p>
|
|
2577
2577
|
* @public
|
|
2578
2578
|
*/
|
|
2579
|
-
CreatedAt?: Date;
|
|
2579
|
+
CreatedAt?: Date | undefined;
|
|
2580
2580
|
/**
|
|
2581
2581
|
* <p>What occurs to start an action.</p>
|
|
2582
2582
|
* @public
|
|
2583
2583
|
*/
|
|
2584
|
-
Event?: Event;
|
|
2584
|
+
Event?: Event | undefined;
|
|
2585
2585
|
/**
|
|
2586
2586
|
* <p>The unique identifier for the event action.</p>
|
|
2587
2587
|
* @public
|
|
2588
2588
|
*/
|
|
2589
|
-
Id?: string;
|
|
2589
|
+
Id?: string | undefined;
|
|
2590
2590
|
/**
|
|
2591
2591
|
* <p>The date and time that the event action was last updated, in ISO 8601 format.</p>
|
|
2592
2592
|
* @public
|
|
2593
2593
|
*/
|
|
2594
|
-
UpdatedAt?: Date;
|
|
2594
|
+
UpdatedAt?: Date | undefined;
|
|
2595
2595
|
}
|
|
2596
2596
|
/**
|
|
2597
2597
|
* @public
|
|
@@ -2611,42 +2611,42 @@ export interface GetJobResponse {
|
|
|
2611
2611
|
* <p>The ARN for the job.</p>
|
|
2612
2612
|
* @public
|
|
2613
2613
|
*/
|
|
2614
|
-
Arn?: string;
|
|
2614
|
+
Arn?: string | undefined;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* <p>The date and time that the job was created, in ISO 8601 format.</p>
|
|
2617
2617
|
* @public
|
|
2618
2618
|
*/
|
|
2619
|
-
CreatedAt?: Date;
|
|
2619
|
+
CreatedAt?: Date | undefined;
|
|
2620
2620
|
/**
|
|
2621
2621
|
* <p>Details about the job.</p>
|
|
2622
2622
|
* @public
|
|
2623
2623
|
*/
|
|
2624
|
-
Details?: ResponseDetails;
|
|
2624
|
+
Details?: ResponseDetails | undefined;
|
|
2625
2625
|
/**
|
|
2626
2626
|
* <p>The errors associated with jobs.</p>
|
|
2627
2627
|
* @public
|
|
2628
2628
|
*/
|
|
2629
|
-
Errors?: JobError[];
|
|
2629
|
+
Errors?: JobError[] | undefined;
|
|
2630
2630
|
/**
|
|
2631
2631
|
* <p>The unique identifier for the job.</p>
|
|
2632
2632
|
* @public
|
|
2633
2633
|
*/
|
|
2634
|
-
Id?: string;
|
|
2634
|
+
Id?: string | undefined;
|
|
2635
2635
|
/**
|
|
2636
2636
|
* <p>The state of the job.</p>
|
|
2637
2637
|
* @public
|
|
2638
2638
|
*/
|
|
2639
|
-
State?: State;
|
|
2639
|
+
State?: State | undefined;
|
|
2640
2640
|
/**
|
|
2641
2641
|
* <p>The job type.</p>
|
|
2642
2642
|
* @public
|
|
2643
2643
|
*/
|
|
2644
|
-
Type?: Type;
|
|
2644
|
+
Type?: Type | undefined;
|
|
2645
2645
|
/**
|
|
2646
2646
|
* <p>The date and time that the job was last updated, in ISO 8601 format.</p>
|
|
2647
2647
|
* @public
|
|
2648
2648
|
*/
|
|
2649
|
-
UpdatedAt?: Date;
|
|
2649
|
+
UpdatedAt?: Date | undefined;
|
|
2650
2650
|
}
|
|
2651
2651
|
/**
|
|
2652
2652
|
* @public
|
|
@@ -2671,7 +2671,7 @@ export interface GetReceivedDataGrantResponse {
|
|
|
2671
2671
|
* <p>The Amazon Web Services account ID of the data grant sender.</p>
|
|
2672
2672
|
* @public
|
|
2673
2673
|
*/
|
|
2674
|
-
SenderPrincipal?: string;
|
|
2674
|
+
SenderPrincipal?: string | undefined;
|
|
2675
2675
|
/**
|
|
2676
2676
|
* <p>The Amazon Web Services account ID of the data grant receiver.</p>
|
|
2677
2677
|
* @public
|
|
@@ -2681,7 +2681,7 @@ export interface GetReceivedDataGrantResponse {
|
|
|
2681
2681
|
* <p>The description of the data grant.</p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
Description?: string;
|
|
2684
|
+
Description?: string | undefined;
|
|
2685
2685
|
/**
|
|
2686
2686
|
* <p>The acceptance state of the data grant.</p>
|
|
2687
2687
|
* @public
|
|
@@ -2691,12 +2691,12 @@ export interface GetReceivedDataGrantResponse {
|
|
|
2691
2691
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
2692
2692
|
* @public
|
|
2693
2693
|
*/
|
|
2694
|
-
AcceptedAt?: Date;
|
|
2694
|
+
AcceptedAt?: Date | undefined;
|
|
2695
2695
|
/**
|
|
2696
2696
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
2697
2697
|
* @public
|
|
2698
2698
|
*/
|
|
2699
|
-
EndsAt?: Date;
|
|
2699
|
+
EndsAt?: Date | undefined;
|
|
2700
2700
|
/**
|
|
2701
2701
|
* <p>The distribution scope for the data grant.</p>
|
|
2702
2702
|
* @public
|
|
@@ -2751,22 +2751,22 @@ export interface GetRevisionResponse {
|
|
|
2751
2751
|
* <p>The ARN for the revision.</p>
|
|
2752
2752
|
* @public
|
|
2753
2753
|
*/
|
|
2754
|
-
Arn?: string;
|
|
2754
|
+
Arn?: string | undefined;
|
|
2755
2755
|
/**
|
|
2756
2756
|
* <p>An optional comment about the revision.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
Comment?: string;
|
|
2759
|
+
Comment?: string | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>The date and time that the revision was created, in ISO 8601 format.</p>
|
|
2762
2762
|
* @public
|
|
2763
2763
|
*/
|
|
2764
|
-
CreatedAt?: Date;
|
|
2764
|
+
CreatedAt?: Date | undefined;
|
|
2765
2765
|
/**
|
|
2766
2766
|
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
2767
2767
|
* @public
|
|
2768
2768
|
*/
|
|
2769
|
-
DataSetId?: string;
|
|
2769
|
+
DataSetId?: string | undefined;
|
|
2770
2770
|
/**
|
|
2771
2771
|
* <p>To publish a revision to a data set in a product, the revision must first be finalized.
|
|
2772
2772
|
* Finalizing a revision tells AWS Data Exchange that your changes to the assets in the
|
|
@@ -2776,45 +2776,45 @@ export interface GetRevisionResponse {
|
|
|
2776
2776
|
* action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
2777
2777
|
* @public
|
|
2778
2778
|
*/
|
|
2779
|
-
Finalized?: boolean;
|
|
2779
|
+
Finalized?: boolean | undefined;
|
|
2780
2780
|
/**
|
|
2781
2781
|
* <p>The unique identifier for the revision.</p>
|
|
2782
2782
|
* @public
|
|
2783
2783
|
*/
|
|
2784
|
-
Id?: string;
|
|
2784
|
+
Id?: string | undefined;
|
|
2785
2785
|
/**
|
|
2786
2786
|
* <p>The revision ID of the owned revision corresponding to the entitled revision being
|
|
2787
2787
|
* viewed. This parameter is returned when a revision owner is viewing the entitled copy of
|
|
2788
2788
|
* its owned revision.</p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
SourceId?: string;
|
|
2791
|
+
SourceId?: string | undefined;
|
|
2792
2792
|
/**
|
|
2793
2793
|
* <p>The tags for the revision.</p>
|
|
2794
2794
|
* @public
|
|
2795
2795
|
*/
|
|
2796
|
-
Tags?: Record<string, string
|
|
2796
|
+
Tags?: Record<string, string> | undefined;
|
|
2797
2797
|
/**
|
|
2798
2798
|
* <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
|
|
2799
2799
|
* @public
|
|
2800
2800
|
*/
|
|
2801
|
-
UpdatedAt?: Date;
|
|
2801
|
+
UpdatedAt?: Date | undefined;
|
|
2802
2802
|
/**
|
|
2803
2803
|
* <p>A required comment to inform subscribers of the reason their access to the revision was
|
|
2804
2804
|
* revoked.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
RevocationComment?: string;
|
|
2807
|
+
RevocationComment?: string | undefined;
|
|
2808
2808
|
/**
|
|
2809
2809
|
* <p>A status indicating that subscribers' access to the revision was revoked.</p>
|
|
2810
2810
|
* @public
|
|
2811
2811
|
*/
|
|
2812
|
-
Revoked?: boolean;
|
|
2812
|
+
Revoked?: boolean | undefined;
|
|
2813
2813
|
/**
|
|
2814
2814
|
* <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
|
|
2815
2815
|
* @public
|
|
2816
2816
|
*/
|
|
2817
|
-
RevokedAt?: Date;
|
|
2817
|
+
RevokedAt?: Date | undefined;
|
|
2818
2818
|
}
|
|
2819
2819
|
/**
|
|
2820
2820
|
* @public
|
|
@@ -2824,13 +2824,13 @@ export interface ListDataGrantsRequest {
|
|
|
2824
2824
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
2825
2825
|
* @public
|
|
2826
2826
|
*/
|
|
2827
|
-
MaxResults?: number;
|
|
2827
|
+
MaxResults?: number | undefined;
|
|
2828
2828
|
/**
|
|
2829
2829
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
2830
2830
|
* operation.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
NextToken?: string;
|
|
2833
|
+
NextToken?: string | undefined;
|
|
2834
2834
|
}
|
|
2835
2835
|
/**
|
|
2836
2836
|
* <p>Information about a data grant.</p>
|
|
@@ -2861,12 +2861,12 @@ export interface DataGrantSummaryEntry {
|
|
|
2861
2861
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
2862
2862
|
* @public
|
|
2863
2863
|
*/
|
|
2864
|
-
AcceptedAt?: Date;
|
|
2864
|
+
AcceptedAt?: Date | undefined;
|
|
2865
2865
|
/**
|
|
2866
2866
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
2867
2867
|
* @public
|
|
2868
2868
|
*/
|
|
2869
|
-
EndsAt?: Date;
|
|
2869
|
+
EndsAt?: Date | undefined;
|
|
2870
2870
|
/**
|
|
2871
2871
|
* <p>The ID of the data set associated to the data grant.</p>
|
|
2872
2872
|
* @public
|
|
@@ -2906,13 +2906,13 @@ export interface ListDataGrantsResponse {
|
|
|
2906
2906
|
* <p>An object that contains a list of data grant information.</p>
|
|
2907
2907
|
* @public
|
|
2908
2908
|
*/
|
|
2909
|
-
DataGrantSummaries?: DataGrantSummaryEntry[];
|
|
2909
|
+
DataGrantSummaries?: DataGrantSummaryEntry[] | undefined;
|
|
2910
2910
|
/**
|
|
2911
2911
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
2912
2912
|
* operation.</p>
|
|
2913
2913
|
* @public
|
|
2914
2914
|
*/
|
|
2915
|
-
NextToken?: string;
|
|
2915
|
+
NextToken?: string | undefined;
|
|
2916
2916
|
}
|
|
2917
2917
|
/**
|
|
2918
2918
|
* @public
|
|
@@ -2927,13 +2927,13 @@ export interface ListDataSetRevisionsRequest {
|
|
|
2927
2927
|
* <p>The maximum number of results returned by a single call.</p>
|
|
2928
2928
|
* @public
|
|
2929
2929
|
*/
|
|
2930
|
-
MaxResults?: number;
|
|
2930
|
+
MaxResults?: number | undefined;
|
|
2931
2931
|
/**
|
|
2932
2932
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
2933
2933
|
* results.</p>
|
|
2934
2934
|
* @public
|
|
2935
2935
|
*/
|
|
2936
|
-
NextToken?: string;
|
|
2936
|
+
NextToken?: string | undefined;
|
|
2937
2937
|
}
|
|
2938
2938
|
/**
|
|
2939
2939
|
* <p>A revision is a container for one or more assets.</p>
|
|
@@ -2949,7 +2949,7 @@ export interface RevisionEntry {
|
|
|
2949
2949
|
* <p>An optional comment about the revision.</p>
|
|
2950
2950
|
* @public
|
|
2951
2951
|
*/
|
|
2952
|
-
Comment?: string;
|
|
2952
|
+
Comment?: string | undefined;
|
|
2953
2953
|
/**
|
|
2954
2954
|
* <p>The date and time that the revision was created, in ISO 8601 format.</p>
|
|
2955
2955
|
* @public
|
|
@@ -2969,7 +2969,7 @@ export interface RevisionEntry {
|
|
|
2969
2969
|
* action. When using the API, revisions are uniquely identified by their ARN.</p>
|
|
2970
2970
|
* @public
|
|
2971
2971
|
*/
|
|
2972
|
-
Finalized?: boolean;
|
|
2972
|
+
Finalized?: boolean | undefined;
|
|
2973
2973
|
/**
|
|
2974
2974
|
* <p>The unique identifier for the revision.</p>
|
|
2975
2975
|
* @public
|
|
@@ -2981,7 +2981,7 @@ export interface RevisionEntry {
|
|
|
2981
2981
|
* its owned revision.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
SourceId?: string;
|
|
2984
|
+
SourceId?: string | undefined;
|
|
2985
2985
|
/**
|
|
2986
2986
|
* <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
|
|
2987
2987
|
* @public
|
|
@@ -2992,17 +2992,17 @@ export interface RevisionEntry {
|
|
|
2992
2992
|
* revoked.</p>
|
|
2993
2993
|
* @public
|
|
2994
2994
|
*/
|
|
2995
|
-
RevocationComment?: string;
|
|
2995
|
+
RevocationComment?: string | undefined;
|
|
2996
2996
|
/**
|
|
2997
2997
|
* <p>A status indicating that subscribers' access to the revision was revoked.</p>
|
|
2998
2998
|
* @public
|
|
2999
2999
|
*/
|
|
3000
|
-
Revoked?: boolean;
|
|
3000
|
+
Revoked?: boolean | undefined;
|
|
3001
3001
|
/**
|
|
3002
3002
|
* <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
|
|
3003
3003
|
* @public
|
|
3004
3004
|
*/
|
|
3005
|
-
RevokedAt?: Date;
|
|
3005
|
+
RevokedAt?: Date | undefined;
|
|
3006
3006
|
}
|
|
3007
3007
|
/**
|
|
3008
3008
|
* @public
|
|
@@ -3013,12 +3013,12 @@ export interface ListDataSetRevisionsResponse {
|
|
|
3013
3013
|
* results.</p>
|
|
3014
3014
|
* @public
|
|
3015
3015
|
*/
|
|
3016
|
-
NextToken?: string;
|
|
3016
|
+
NextToken?: string | undefined;
|
|
3017
3017
|
/**
|
|
3018
3018
|
* <p>The asset objects listed by the request.</p>
|
|
3019
3019
|
* @public
|
|
3020
3020
|
*/
|
|
3021
|
-
Revisions?: RevisionEntry[];
|
|
3021
|
+
Revisions?: RevisionEntry[] | undefined;
|
|
3022
3022
|
}
|
|
3023
3023
|
/**
|
|
3024
3024
|
* @public
|
|
@@ -3028,19 +3028,19 @@ export interface ListDataSetsRequest {
|
|
|
3028
3028
|
* <p>The maximum number of results returned by a single call.</p>
|
|
3029
3029
|
* @public
|
|
3030
3030
|
*/
|
|
3031
|
-
MaxResults?: number;
|
|
3031
|
+
MaxResults?: number | undefined;
|
|
3032
3032
|
/**
|
|
3033
3033
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3034
3034
|
* results.</p>
|
|
3035
3035
|
* @public
|
|
3036
3036
|
*/
|
|
3037
|
-
NextToken?: string;
|
|
3037
|
+
NextToken?: string | undefined;
|
|
3038
3038
|
/**
|
|
3039
3039
|
* <p>A property that defines the data set as OWNED by the account (for providers) or ENTITLED
|
|
3040
3040
|
* to the account (for subscribers).</p>
|
|
3041
3041
|
* @public
|
|
3042
3042
|
*/
|
|
3043
|
-
Origin?: string;
|
|
3043
|
+
Origin?: string | undefined;
|
|
3044
3044
|
}
|
|
3045
3045
|
/**
|
|
3046
3046
|
* <p>A data set is an AWS resource with one or more revisions.</p>
|
|
@@ -3088,14 +3088,14 @@ export interface DataSetEntry {
|
|
|
3088
3088
|
* Marketplace.</p>
|
|
3089
3089
|
* @public
|
|
3090
3090
|
*/
|
|
3091
|
-
OriginDetails?: OriginDetails;
|
|
3091
|
+
OriginDetails?: OriginDetails | undefined;
|
|
3092
3092
|
/**
|
|
3093
3093
|
* <p>The data set ID of the owned data set corresponding to the entitled data set being
|
|
3094
3094
|
* viewed. This parameter is returned when a data set owner is viewing the entitled copy of
|
|
3095
3095
|
* its owned data set.</p>
|
|
3096
3096
|
* @public
|
|
3097
3097
|
*/
|
|
3098
|
-
SourceId?: string;
|
|
3098
|
+
SourceId?: string | undefined;
|
|
3099
3099
|
/**
|
|
3100
3100
|
* <p>The date and time that the data set was last updated, in ISO 8601 format.</p>
|
|
3101
3101
|
* @public
|
|
@@ -3110,13 +3110,13 @@ export interface ListDataSetsResponse {
|
|
|
3110
3110
|
* <p>The data set objects listed by the request.</p>
|
|
3111
3111
|
* @public
|
|
3112
3112
|
*/
|
|
3113
|
-
DataSets?: DataSetEntry[];
|
|
3113
|
+
DataSets?: DataSetEntry[] | undefined;
|
|
3114
3114
|
/**
|
|
3115
3115
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3116
3116
|
* results.</p>
|
|
3117
3117
|
* @public
|
|
3118
3118
|
*/
|
|
3119
|
-
NextToken?: string;
|
|
3119
|
+
NextToken?: string | undefined;
|
|
3120
3120
|
}
|
|
3121
3121
|
/**
|
|
3122
3122
|
* @public
|
|
@@ -3126,18 +3126,18 @@ export interface ListEventActionsRequest {
|
|
|
3126
3126
|
* <p>The unique identifier for the event source.</p>
|
|
3127
3127
|
* @public
|
|
3128
3128
|
*/
|
|
3129
|
-
EventSourceId?: string;
|
|
3129
|
+
EventSourceId?: string | undefined;
|
|
3130
3130
|
/**
|
|
3131
3131
|
* <p>The maximum number of results returned by a single call.</p>
|
|
3132
3132
|
* @public
|
|
3133
3133
|
*/
|
|
3134
|
-
MaxResults?: number;
|
|
3134
|
+
MaxResults?: number | undefined;
|
|
3135
3135
|
/**
|
|
3136
3136
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3137
3137
|
* results.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
NextToken?: string;
|
|
3140
|
+
NextToken?: string | undefined;
|
|
3141
3141
|
}
|
|
3142
3142
|
/**
|
|
3143
3143
|
* <p>An event action is an object that defines the relationship between a specific event and
|
|
@@ -3184,13 +3184,13 @@ export interface ListEventActionsResponse {
|
|
|
3184
3184
|
* <p>The event action objects listed by the request.</p>
|
|
3185
3185
|
* @public
|
|
3186
3186
|
*/
|
|
3187
|
-
EventActions?: EventActionEntry[];
|
|
3187
|
+
EventActions?: EventActionEntry[] | undefined;
|
|
3188
3188
|
/**
|
|
3189
3189
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3190
3190
|
* results.</p>
|
|
3191
3191
|
* @public
|
|
3192
3192
|
*/
|
|
3193
|
-
NextToken?: string;
|
|
3193
|
+
NextToken?: string | undefined;
|
|
3194
3194
|
}
|
|
3195
3195
|
/**
|
|
3196
3196
|
* @public
|
|
@@ -3200,23 +3200,23 @@ export interface ListJobsRequest {
|
|
|
3200
3200
|
* <p>The unique identifier for a data set.</p>
|
|
3201
3201
|
* @public
|
|
3202
3202
|
*/
|
|
3203
|
-
DataSetId?: string;
|
|
3203
|
+
DataSetId?: string | undefined;
|
|
3204
3204
|
/**
|
|
3205
3205
|
* <p>The maximum number of results returned by a single call.</p>
|
|
3206
3206
|
* @public
|
|
3207
3207
|
*/
|
|
3208
|
-
MaxResults?: number;
|
|
3208
|
+
MaxResults?: number | undefined;
|
|
3209
3209
|
/**
|
|
3210
3210
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3211
3211
|
* results.</p>
|
|
3212
3212
|
* @public
|
|
3213
3213
|
*/
|
|
3214
|
-
NextToken?: string;
|
|
3214
|
+
NextToken?: string | undefined;
|
|
3215
3215
|
/**
|
|
3216
3216
|
* <p>The unique identifier for a revision.</p>
|
|
3217
3217
|
* @public
|
|
3218
3218
|
*/
|
|
3219
|
-
RevisionId?: string;
|
|
3219
|
+
RevisionId?: string | undefined;
|
|
3220
3220
|
}
|
|
3221
3221
|
/**
|
|
3222
3222
|
* <p>AWS Data Exchange Jobs are asynchronous import or export operations used to create or
|
|
@@ -3246,7 +3246,7 @@ export interface JobEntry {
|
|
|
3246
3246
|
* <p>Errors for jobs.</p>
|
|
3247
3247
|
* @public
|
|
3248
3248
|
*/
|
|
3249
|
-
Errors?: JobError[];
|
|
3249
|
+
Errors?: JobError[] | undefined;
|
|
3250
3250
|
/**
|
|
3251
3251
|
* <p>The unique identifier for the job.</p>
|
|
3252
3252
|
* @public
|
|
@@ -3276,13 +3276,13 @@ export interface ListJobsResponse {
|
|
|
3276
3276
|
* <p>The jobs listed by the request.</p>
|
|
3277
3277
|
* @public
|
|
3278
3278
|
*/
|
|
3279
|
-
Jobs?: JobEntry[];
|
|
3279
|
+
Jobs?: JobEntry[] | undefined;
|
|
3280
3280
|
/**
|
|
3281
3281
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3282
3282
|
* results.</p>
|
|
3283
3283
|
* @public
|
|
3284
3284
|
*/
|
|
3285
|
-
NextToken?: string;
|
|
3285
|
+
NextToken?: string | undefined;
|
|
3286
3286
|
}
|
|
3287
3287
|
/**
|
|
3288
3288
|
* @public
|
|
@@ -3292,18 +3292,18 @@ export interface ListReceivedDataGrantsRequest {
|
|
|
3292
3292
|
* <p>The maximum number of results to be included in the next page.</p>
|
|
3293
3293
|
* @public
|
|
3294
3294
|
*/
|
|
3295
|
-
MaxResults?: number;
|
|
3295
|
+
MaxResults?: number | undefined;
|
|
3296
3296
|
/**
|
|
3297
3297
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3298
3298
|
* operation.</p>
|
|
3299
3299
|
* @public
|
|
3300
3300
|
*/
|
|
3301
|
-
NextToken?: string;
|
|
3301
|
+
NextToken?: string | undefined;
|
|
3302
3302
|
/**
|
|
3303
3303
|
* <p>The acceptance state of the data grants to list.</p>
|
|
3304
3304
|
* @public
|
|
3305
3305
|
*/
|
|
3306
|
-
AcceptanceState?: AcceptanceStateFilterValue[];
|
|
3306
|
+
AcceptanceState?: AcceptanceStateFilterValue[] | undefined;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
* <p>Information about a received data grant.</p>
|
|
@@ -3334,12 +3334,12 @@ export interface ReceivedDataGrantSummariesEntry {
|
|
|
3334
3334
|
* <p>The timestamp of when the data grant was accepted.</p>
|
|
3335
3335
|
* @public
|
|
3336
3336
|
*/
|
|
3337
|
-
AcceptedAt?: Date;
|
|
3337
|
+
AcceptedAt?: Date | undefined;
|
|
3338
3338
|
/**
|
|
3339
3339
|
* <p>The timestamp of when access to the associated data set ends.</p>
|
|
3340
3340
|
* @public
|
|
3341
3341
|
*/
|
|
3342
|
-
EndsAt?: Date;
|
|
3342
|
+
EndsAt?: Date | undefined;
|
|
3343
3343
|
/**
|
|
3344
3344
|
* <p>The ID of the data set associated to the data grant.</p>
|
|
3345
3345
|
* @public
|
|
@@ -3374,13 +3374,13 @@ export interface ListReceivedDataGrantsResponse {
|
|
|
3374
3374
|
* <p>An object that contains a list of received data grant information.</p>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
DataGrantSummaries?: ReceivedDataGrantSummariesEntry[];
|
|
3377
|
+
DataGrantSummaries?: ReceivedDataGrantSummariesEntry[] | undefined;
|
|
3378
3378
|
/**
|
|
3379
3379
|
* <p>The pagination token used to retrieve the next page of results for this
|
|
3380
3380
|
* operation.</p>
|
|
3381
3381
|
* @public
|
|
3382
3382
|
*/
|
|
3383
|
-
NextToken?: string;
|
|
3383
|
+
NextToken?: string | undefined;
|
|
3384
3384
|
}
|
|
3385
3385
|
/**
|
|
3386
3386
|
* @public
|
|
@@ -3395,13 +3395,13 @@ export interface ListRevisionAssetsRequest {
|
|
|
3395
3395
|
* <p>The maximum number of results returned by a single call.</p>
|
|
3396
3396
|
* @public
|
|
3397
3397
|
*/
|
|
3398
|
-
MaxResults?: number;
|
|
3398
|
+
MaxResults?: number | undefined;
|
|
3399
3399
|
/**
|
|
3400
3400
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3401
3401
|
* results.</p>
|
|
3402
3402
|
* @public
|
|
3403
3403
|
*/
|
|
3404
|
-
NextToken?: string;
|
|
3404
|
+
NextToken?: string | undefined;
|
|
3405
3405
|
/**
|
|
3406
3406
|
* <p>The unique identifier for a revision.</p>
|
|
3407
3407
|
* @public
|
|
@@ -3416,13 +3416,13 @@ export interface ListRevisionAssetsResponse {
|
|
|
3416
3416
|
* <p>The asset objects listed by the request.</p>
|
|
3417
3417
|
* @public
|
|
3418
3418
|
*/
|
|
3419
|
-
Assets?: AssetEntry[];
|
|
3419
|
+
Assets?: AssetEntry[] | undefined;
|
|
3420
3420
|
/**
|
|
3421
3421
|
* <p>The token value retrieved from a previous call to access the next page of
|
|
3422
3422
|
* results.</p>
|
|
3423
3423
|
* @public
|
|
3424
3424
|
*/
|
|
3425
|
-
NextToken?: string;
|
|
3425
|
+
NextToken?: string | undefined;
|
|
3426
3426
|
}
|
|
3427
3427
|
/**
|
|
3428
3428
|
* @public
|
|
@@ -3442,7 +3442,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3442
3442
|
* <p>A label that consists of a customer-defined key and an optional value.</p>
|
|
3443
3443
|
* @public
|
|
3444
3444
|
*/
|
|
3445
|
-
Tags?: Record<string, string
|
|
3445
|
+
Tags?: Record<string, string> | undefined;
|
|
3446
3446
|
}
|
|
3447
3447
|
/**
|
|
3448
3448
|
* @public
|
|
@@ -3473,22 +3473,22 @@ export interface RevokeRevisionResponse {
|
|
|
3473
3473
|
* <p>The ARN for the revision.</p>
|
|
3474
3474
|
* @public
|
|
3475
3475
|
*/
|
|
3476
|
-
Arn?: string;
|
|
3476
|
+
Arn?: string | undefined;
|
|
3477
3477
|
/**
|
|
3478
3478
|
* <p>An optional comment about the revision.</p>
|
|
3479
3479
|
* @public
|
|
3480
3480
|
*/
|
|
3481
|
-
Comment?: string;
|
|
3481
|
+
Comment?: string | undefined;
|
|
3482
3482
|
/**
|
|
3483
3483
|
* <p>The date and time that the revision was created, in ISO 8601 format.</p>
|
|
3484
3484
|
* @public
|
|
3485
3485
|
*/
|
|
3486
|
-
CreatedAt?: Date;
|
|
3486
|
+
CreatedAt?: Date | undefined;
|
|
3487
3487
|
/**
|
|
3488
3488
|
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
3489
3489
|
* @public
|
|
3490
3490
|
*/
|
|
3491
|
-
DataSetId?: string;
|
|
3491
|
+
DataSetId?: string | undefined;
|
|
3492
3492
|
/**
|
|
3493
3493
|
* <p>To publish a revision to a data set in a product, the revision must first be finalized.
|
|
3494
3494
|
* Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision
|
|
@@ -3498,40 +3498,40 @@ export interface RevokeRevisionResponse {
|
|
|
3498
3498
|
* When using the API, revisions are uniquely identified by their ARN.</p>
|
|
3499
3499
|
* @public
|
|
3500
3500
|
*/
|
|
3501
|
-
Finalized?: boolean;
|
|
3501
|
+
Finalized?: boolean | undefined;
|
|
3502
3502
|
/**
|
|
3503
3503
|
* <p>The unique identifier for the revision.</p>
|
|
3504
3504
|
* @public
|
|
3505
3505
|
*/
|
|
3506
|
-
Id?: string;
|
|
3506
|
+
Id?: string | undefined;
|
|
3507
3507
|
/**
|
|
3508
3508
|
* <p>The revision ID of the owned revision corresponding to the entitled revision being
|
|
3509
3509
|
* viewed. This parameter is returned when a revision owner is viewing the entitled copy of
|
|
3510
3510
|
* its owned revision.</p>
|
|
3511
3511
|
* @public
|
|
3512
3512
|
*/
|
|
3513
|
-
SourceId?: string;
|
|
3513
|
+
SourceId?: string | undefined;
|
|
3514
3514
|
/**
|
|
3515
3515
|
* <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
|
|
3516
3516
|
* @public
|
|
3517
3517
|
*/
|
|
3518
|
-
UpdatedAt?: Date;
|
|
3518
|
+
UpdatedAt?: Date | undefined;
|
|
3519
3519
|
/**
|
|
3520
3520
|
* <p>A required comment to inform subscribers of the reason their access to the revision was
|
|
3521
3521
|
* revoked.</p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
RevocationComment?: string;
|
|
3524
|
+
RevocationComment?: string | undefined;
|
|
3525
3525
|
/**
|
|
3526
3526
|
* <p>A status indicating that subscribers' access to the revision was revoked.</p>
|
|
3527
3527
|
* @public
|
|
3528
3528
|
*/
|
|
3529
|
-
Revoked?: boolean;
|
|
3529
|
+
Revoked?: boolean | undefined;
|
|
3530
3530
|
/**
|
|
3531
3531
|
* <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
|
|
3532
3532
|
* @public
|
|
3533
3533
|
*/
|
|
3534
|
-
RevokedAt?: Date;
|
|
3534
|
+
RevokedAt?: Date | undefined;
|
|
3535
3535
|
}
|
|
3536
3536
|
/**
|
|
3537
3537
|
* @public
|
|
@@ -3541,13 +3541,13 @@ export interface SendApiAssetRequest {
|
|
|
3541
3541
|
* <p>The request body.</p>
|
|
3542
3542
|
* @public
|
|
3543
3543
|
*/
|
|
3544
|
-
Body?: string;
|
|
3544
|
+
Body?: string | undefined;
|
|
3545
3545
|
/**
|
|
3546
3546
|
* <p>Attach query string parameters to the end of the URI (for example,
|
|
3547
3547
|
* /v1/examplePath?exampleParam=exampleValue).</p>
|
|
3548
3548
|
* @public
|
|
3549
3549
|
*/
|
|
3550
|
-
QueryStringParameters?: Record<string, string
|
|
3550
|
+
QueryStringParameters?: Record<string, string> | undefined;
|
|
3551
3551
|
/**
|
|
3552
3552
|
* <p>Asset ID value for the API request.</p>
|
|
3553
3553
|
* @public
|
|
@@ -3565,19 +3565,19 @@ export interface SendApiAssetRequest {
|
|
|
3565
3565
|
* request.</p>
|
|
3566
3566
|
* @public
|
|
3567
3567
|
*/
|
|
3568
|
-
RequestHeaders?: Record<string, string
|
|
3568
|
+
RequestHeaders?: Record<string, string> | undefined;
|
|
3569
3569
|
/**
|
|
3570
3570
|
* <p>HTTP method value for the API request. Alternatively, you can use the appropriate verb
|
|
3571
3571
|
* in your request.</p>
|
|
3572
3572
|
* @public
|
|
3573
3573
|
*/
|
|
3574
|
-
Method?: string;
|
|
3574
|
+
Method?: string | undefined;
|
|
3575
3575
|
/**
|
|
3576
3576
|
* <p>URI path value for the API request. Alternatively, you can set the URI path directly by
|
|
3577
3577
|
* invoking /v1/\{pathValue\}.</p>
|
|
3578
3578
|
* @public
|
|
3579
3579
|
*/
|
|
3580
|
-
Path?: string;
|
|
3580
|
+
Path?: string | undefined;
|
|
3581
3581
|
/**
|
|
3582
3582
|
* <p>Revision ID value for the API request.</p>
|
|
3583
3583
|
* @public
|
|
@@ -3592,12 +3592,12 @@ export interface SendApiAssetResponse {
|
|
|
3592
3592
|
* <p>The response body from the underlying API tracked by the API asset.</p>
|
|
3593
3593
|
* @public
|
|
3594
3594
|
*/
|
|
3595
|
-
Body?: string;
|
|
3595
|
+
Body?: string | undefined;
|
|
3596
3596
|
/**
|
|
3597
3597
|
* <p>The response headers from the underlying API tracked by the API asset.</p>
|
|
3598
3598
|
* @public
|
|
3599
3599
|
*/
|
|
3600
|
-
ResponseHeaders?: Record<string, string
|
|
3600
|
+
ResponseHeaders?: Record<string, string> | undefined;
|
|
3601
3601
|
}
|
|
3602
3602
|
/**
|
|
3603
3603
|
* <p>Extra details specific to a data update type notification.</p>
|
|
@@ -3610,7 +3610,7 @@ export interface DataUpdateRequestDetails {
|
|
|
3610
3610
|
* resource supporting the data set was updated.</p>
|
|
3611
3611
|
* @public
|
|
3612
3612
|
*/
|
|
3613
|
-
DataUpdatedAt?: Date;
|
|
3613
|
+
DataUpdatedAt?: Date | undefined;
|
|
3614
3614
|
}
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p>Extra details specific to a deprecation type notification.</p>
|
|
@@ -3664,7 +3664,7 @@ export interface SchemaChangeDetails {
|
|
|
3664
3664
|
* can be up to 512 characters long.</p>
|
|
3665
3665
|
* @public
|
|
3666
3666
|
*/
|
|
3667
|
-
Description?: string;
|
|
3667
|
+
Description?: string | undefined;
|
|
3668
3668
|
}
|
|
3669
3669
|
/**
|
|
3670
3670
|
* <p>Extra details specific to this schema change type notification.</p>
|
|
@@ -3678,7 +3678,7 @@ export interface SchemaChangeRequestDetails {
|
|
|
3678
3678
|
* can have up to 100 entries.</p>
|
|
3679
3679
|
* @public
|
|
3680
3680
|
*/
|
|
3681
|
-
Changes?: SchemaChangeDetails[];
|
|
3681
|
+
Changes?: SchemaChangeDetails[] | undefined;
|
|
3682
3682
|
/**
|
|
3683
3683
|
* <p>A
|
|
3684
3684
|
* date in the future when the schema change is taking effect.</p>
|
|
@@ -3696,19 +3696,19 @@ export interface NotificationDetails {
|
|
|
3696
3696
|
* details specific to a data update type notification.</p>
|
|
3697
3697
|
* @public
|
|
3698
3698
|
*/
|
|
3699
|
-
DataUpdate?: DataUpdateRequestDetails;
|
|
3699
|
+
DataUpdate?: DataUpdateRequestDetails | undefined;
|
|
3700
3700
|
/**
|
|
3701
3701
|
* <p>Extra
|
|
3702
3702
|
* details specific to a deprecation type notification.</p>
|
|
3703
3703
|
* @public
|
|
3704
3704
|
*/
|
|
3705
|
-
Deprecation?: DeprecationRequestDetails;
|
|
3705
|
+
Deprecation?: DeprecationRequestDetails | undefined;
|
|
3706
3706
|
/**
|
|
3707
3707
|
* <p>Extra
|
|
3708
3708
|
* details specific to a schema change type notification.</p>
|
|
3709
3709
|
* @public
|
|
3710
3710
|
*/
|
|
3711
|
-
SchemaChange?: SchemaChangeRequestDetails;
|
|
3711
|
+
SchemaChange?: SchemaChangeRequestDetails | undefined;
|
|
3712
3712
|
}
|
|
3713
3713
|
/**
|
|
3714
3714
|
* <p>Extra details specific to the affected scope in this LF data set.</p>
|
|
@@ -3720,13 +3720,13 @@ export interface LakeFormationTagPolicyDetails {
|
|
|
3720
3720
|
* underlying Glue database that the notification is referring to.</p>
|
|
3721
3721
|
* @public
|
|
3722
3722
|
*/
|
|
3723
|
-
Database?: string;
|
|
3723
|
+
Database?: string | undefined;
|
|
3724
3724
|
/**
|
|
3725
3725
|
* <p>The
|
|
3726
3726
|
* underlying Glue table that the notification is referring to.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
Table?: string;
|
|
3729
|
+
Table?: string | undefined;
|
|
3730
3730
|
}
|
|
3731
3731
|
/**
|
|
3732
3732
|
* <p>Extra details specific to the affected scope in this Redshift data set.</p>
|
|
@@ -3752,25 +3752,25 @@ export interface RedshiftDataShareDetails {
|
|
|
3752
3752
|
* function name in the Redshift database that is being affected by this notification.</p>
|
|
3753
3753
|
* @public
|
|
3754
3754
|
*/
|
|
3755
|
-
Function?: string;
|
|
3755
|
+
Function?: string | undefined;
|
|
3756
3756
|
/**
|
|
3757
3757
|
* <p>A
|
|
3758
3758
|
* table name in the Redshift database that is being affected by this notification.</p>
|
|
3759
3759
|
* @public
|
|
3760
3760
|
*/
|
|
3761
|
-
Table?: string;
|
|
3761
|
+
Table?: string | undefined;
|
|
3762
3762
|
/**
|
|
3763
3763
|
* <p>A
|
|
3764
3764
|
* schema name in the Redshift database that is being affected by this notification.</p>
|
|
3765
3765
|
* @public
|
|
3766
3766
|
*/
|
|
3767
|
-
Schema?: string;
|
|
3767
|
+
Schema?: string | undefined;
|
|
3768
3768
|
/**
|
|
3769
3769
|
* <p>A
|
|
3770
3770
|
* view name in the Redshift database that is being affected by this notification.</p>
|
|
3771
3771
|
* @public
|
|
3772
3772
|
*/
|
|
3773
|
-
View?: string;
|
|
3773
|
+
View?: string | undefined;
|
|
3774
3774
|
}
|
|
3775
3775
|
/**
|
|
3776
3776
|
* <p>Extra details specific to the affected scope in this S3 Data Access data set.</p>
|
|
@@ -3784,7 +3784,7 @@ export interface S3DataAccessDetails {
|
|
|
3784
3784
|
* can have up to 50 entries.</p>
|
|
3785
3785
|
* @public
|
|
3786
3786
|
*/
|
|
3787
|
-
KeyPrefixes?: string[];
|
|
3787
|
+
KeyPrefixes?: string[] | undefined;
|
|
3788
3788
|
/**
|
|
3789
3789
|
* <p>A
|
|
3790
3790
|
* list of the keys affected by this
|
|
@@ -3792,7 +3792,7 @@ export interface S3DataAccessDetails {
|
|
|
3792
3792
|
* can have up to 50 entries.</p>
|
|
3793
3793
|
* @public
|
|
3794
3794
|
*/
|
|
3795
|
-
Keys?: string[];
|
|
3795
|
+
Keys?: string[] | undefined;
|
|
3796
3796
|
}
|
|
3797
3797
|
/**
|
|
3798
3798
|
* <p>Details about the scope of the notifications such as the affected resources.</p>
|
|
@@ -3804,19 +3804,19 @@ export interface ScopeDetails {
|
|
|
3804
3804
|
* LF resources that will be affected by this notification.</p>
|
|
3805
3805
|
* @public
|
|
3806
3806
|
*/
|
|
3807
|
-
LakeFormationTagPolicies?: LakeFormationTagPolicyDetails[];
|
|
3807
|
+
LakeFormationTagPolicies?: LakeFormationTagPolicyDetails[] | undefined;
|
|
3808
3808
|
/**
|
|
3809
3809
|
* <p>Underlying
|
|
3810
3810
|
* Redshift resources that will be affected by this notification.</p>
|
|
3811
3811
|
* @public
|
|
3812
3812
|
*/
|
|
3813
|
-
RedshiftDataShares?: RedshiftDataShareDetails[];
|
|
3813
|
+
RedshiftDataShares?: RedshiftDataShareDetails[] | undefined;
|
|
3814
3814
|
/**
|
|
3815
3815
|
* <p>Underlying
|
|
3816
3816
|
* S3 resources that will be affected by this notification.</p>
|
|
3817
3817
|
* @public
|
|
3818
3818
|
*/
|
|
3819
|
-
S3DataAccesses?: S3DataAccessDetails[];
|
|
3819
|
+
S3DataAccesses?: S3DataAccessDetails[] | undefined;
|
|
3820
3820
|
}
|
|
3821
3821
|
/**
|
|
3822
3822
|
* @public
|
|
@@ -3842,20 +3842,20 @@ export interface SendDataSetNotificationRequest {
|
|
|
3842
3842
|
* event.</p>
|
|
3843
3843
|
* @public
|
|
3844
3844
|
*/
|
|
3845
|
-
Scope?: ScopeDetails;
|
|
3845
|
+
Scope?: ScopeDetails | undefined;
|
|
3846
3846
|
/**
|
|
3847
3847
|
* <p>Idempotency
|
|
3848
3848
|
* key for the notification, this key allows us to deduplicate notifications that are sent in
|
|
3849
3849
|
* quick succession erroneously.</p>
|
|
3850
3850
|
* @public
|
|
3851
3851
|
*/
|
|
3852
|
-
ClientToken?: string;
|
|
3852
|
+
ClientToken?: string | undefined;
|
|
3853
3853
|
/**
|
|
3854
3854
|
* <p>Free-form
|
|
3855
3855
|
* text field for providers to add information about their notifications.</p>
|
|
3856
3856
|
* @public
|
|
3857
3857
|
*/
|
|
3858
|
-
Comment?: string;
|
|
3858
|
+
Comment?: string | undefined;
|
|
3859
3859
|
/**
|
|
3860
3860
|
* <p>Affected
|
|
3861
3861
|
* data set of the notification.</p>
|
|
@@ -3867,7 +3867,7 @@ export interface SendDataSetNotificationRequest {
|
|
|
3867
3867
|
* details specific to this notification type.</p>
|
|
3868
3868
|
* @public
|
|
3869
3869
|
*/
|
|
3870
|
-
Details?: NotificationDetails;
|
|
3870
|
+
Details?: NotificationDetails | undefined;
|
|
3871
3871
|
/**
|
|
3872
3872
|
* <p>The
|
|
3873
3873
|
* type of the notification. Describing the kind of event the notification is alerting you
|
|
@@ -3965,32 +3965,32 @@ export interface UpdateAssetResponse {
|
|
|
3965
3965
|
* <p>The ARN for the asset.</p>
|
|
3966
3966
|
* @public
|
|
3967
3967
|
*/
|
|
3968
|
-
Arn?: string;
|
|
3968
|
+
Arn?: string | undefined;
|
|
3969
3969
|
/**
|
|
3970
3970
|
* <p>Details about the asset.</p>
|
|
3971
3971
|
* @public
|
|
3972
3972
|
*/
|
|
3973
|
-
AssetDetails?: AssetDetails;
|
|
3973
|
+
AssetDetails?: AssetDetails | undefined;
|
|
3974
3974
|
/**
|
|
3975
3975
|
* <p>The type of asset that is added to a data set.</p>
|
|
3976
3976
|
* @public
|
|
3977
3977
|
*/
|
|
3978
|
-
AssetType?: AssetType;
|
|
3978
|
+
AssetType?: AssetType | undefined;
|
|
3979
3979
|
/**
|
|
3980
3980
|
* <p>The date and time that the asset was created, in ISO 8601 format.</p>
|
|
3981
3981
|
* @public
|
|
3982
3982
|
*/
|
|
3983
|
-
CreatedAt?: Date;
|
|
3983
|
+
CreatedAt?: Date | undefined;
|
|
3984
3984
|
/**
|
|
3985
3985
|
* <p>The unique identifier for the data set associated with this asset.</p>
|
|
3986
3986
|
* @public
|
|
3987
3987
|
*/
|
|
3988
|
-
DataSetId?: string;
|
|
3988
|
+
DataSetId?: string | undefined;
|
|
3989
3989
|
/**
|
|
3990
3990
|
* <p>The unique identifier for the asset.</p>
|
|
3991
3991
|
* @public
|
|
3992
3992
|
*/
|
|
3993
|
-
Id?: string;
|
|
3993
|
+
Id?: string | undefined;
|
|
3994
3994
|
/**
|
|
3995
3995
|
* <p>The name of the asset. When importing from Amazon S3, the Amazon S3 object key is used
|
|
3996
3996
|
* as the asset name. When exporting to Amazon S3, the asset name is used as default target
|
|
@@ -4001,24 +4001,24 @@ export interface UpdateAssetResponse {
|
|
|
4001
4001
|
* asset name.</p>
|
|
4002
4002
|
* @public
|
|
4003
4003
|
*/
|
|
4004
|
-
Name?: string;
|
|
4004
|
+
Name?: string | undefined;
|
|
4005
4005
|
/**
|
|
4006
4006
|
* <p>The unique identifier for the revision associated with this asset.</p>
|
|
4007
4007
|
* @public
|
|
4008
4008
|
*/
|
|
4009
|
-
RevisionId?: string;
|
|
4009
|
+
RevisionId?: string | undefined;
|
|
4010
4010
|
/**
|
|
4011
4011
|
* <p>The asset ID of the owned asset corresponding to the entitled asset being viewed. This
|
|
4012
4012
|
* parameter is returned when an asset owner is viewing the entitled copy of its owned
|
|
4013
4013
|
* asset.</p>
|
|
4014
4014
|
* @public
|
|
4015
4015
|
*/
|
|
4016
|
-
SourceId?: string;
|
|
4016
|
+
SourceId?: string | undefined;
|
|
4017
4017
|
/**
|
|
4018
4018
|
* <p>The date and time that the asset was last updated, in ISO 8601 format.</p>
|
|
4019
4019
|
* @public
|
|
4020
4020
|
*/
|
|
4021
|
-
UpdatedAt?: Date;
|
|
4021
|
+
UpdatedAt?: Date | undefined;
|
|
4022
4022
|
}
|
|
4023
4023
|
/**
|
|
4024
4024
|
* @public
|
|
@@ -4033,12 +4033,12 @@ export interface UpdateDataSetRequest {
|
|
|
4033
4033
|
* <p>The description for the data set.</p>
|
|
4034
4034
|
* @public
|
|
4035
4035
|
*/
|
|
4036
|
-
Description?: string;
|
|
4036
|
+
Description?: string | undefined;
|
|
4037
4037
|
/**
|
|
4038
4038
|
* <p>The name of the data set.</p>
|
|
4039
4039
|
* @public
|
|
4040
4040
|
*/
|
|
4041
|
-
Name?: string;
|
|
4041
|
+
Name?: string | undefined;
|
|
4042
4042
|
}
|
|
4043
4043
|
/**
|
|
4044
4044
|
* @public
|
|
@@ -4048,56 +4048,56 @@ export interface UpdateDataSetResponse {
|
|
|
4048
4048
|
* <p>The ARN for the data set.</p>
|
|
4049
4049
|
* @public
|
|
4050
4050
|
*/
|
|
4051
|
-
Arn?: string;
|
|
4051
|
+
Arn?: string | undefined;
|
|
4052
4052
|
/**
|
|
4053
4053
|
* <p>The type of asset that is added to a data set.</p>
|
|
4054
4054
|
* @public
|
|
4055
4055
|
*/
|
|
4056
|
-
AssetType?: AssetType;
|
|
4056
|
+
AssetType?: AssetType | undefined;
|
|
4057
4057
|
/**
|
|
4058
4058
|
* <p>The date and time that the data set was created, in ISO 8601 format.</p>
|
|
4059
4059
|
* @public
|
|
4060
4060
|
*/
|
|
4061
|
-
CreatedAt?: Date;
|
|
4061
|
+
CreatedAt?: Date | undefined;
|
|
4062
4062
|
/**
|
|
4063
4063
|
* <p>The description for the data set.</p>
|
|
4064
4064
|
* @public
|
|
4065
4065
|
*/
|
|
4066
|
-
Description?: string;
|
|
4066
|
+
Description?: string | undefined;
|
|
4067
4067
|
/**
|
|
4068
4068
|
* <p>The unique identifier for the data set.</p>
|
|
4069
4069
|
* @public
|
|
4070
4070
|
*/
|
|
4071
|
-
Id?: string;
|
|
4071
|
+
Id?: string | undefined;
|
|
4072
4072
|
/**
|
|
4073
4073
|
* <p>The name of the data set.</p>
|
|
4074
4074
|
* @public
|
|
4075
4075
|
*/
|
|
4076
|
-
Name?: string;
|
|
4076
|
+
Name?: string | undefined;
|
|
4077
4077
|
/**
|
|
4078
4078
|
* <p>A property that defines the data set as OWNED by the account (for providers) or ENTITLED
|
|
4079
4079
|
* to the account (for subscribers).</p>
|
|
4080
4080
|
* @public
|
|
4081
4081
|
*/
|
|
4082
|
-
Origin?: Origin;
|
|
4082
|
+
Origin?: Origin | undefined;
|
|
4083
4083
|
/**
|
|
4084
4084
|
* <p>If the origin of this data set is ENTITLED, includes the details for the product on AWS
|
|
4085
4085
|
* Marketplace.</p>
|
|
4086
4086
|
* @public
|
|
4087
4087
|
*/
|
|
4088
|
-
OriginDetails?: OriginDetails;
|
|
4088
|
+
OriginDetails?: OriginDetails | undefined;
|
|
4089
4089
|
/**
|
|
4090
4090
|
* <p>The data set ID of the owned data set corresponding to the entitled data set being
|
|
4091
4091
|
* viewed. This parameter is returned when a data set owner is viewing the entitled copy of
|
|
4092
4092
|
* its owned data set.</p>
|
|
4093
4093
|
* @public
|
|
4094
4094
|
*/
|
|
4095
|
-
SourceId?: string;
|
|
4095
|
+
SourceId?: string | undefined;
|
|
4096
4096
|
/**
|
|
4097
4097
|
* <p>The date and time that the data set was last updated, in ISO 8601 format.</p>
|
|
4098
4098
|
* @public
|
|
4099
4099
|
*/
|
|
4100
|
-
UpdatedAt?: Date;
|
|
4100
|
+
UpdatedAt?: Date | undefined;
|
|
4101
4101
|
}
|
|
4102
4102
|
/**
|
|
4103
4103
|
* @public
|
|
@@ -4107,7 +4107,7 @@ export interface UpdateEventActionRequest {
|
|
|
4107
4107
|
* <p>What occurs after a certain event.</p>
|
|
4108
4108
|
* @public
|
|
4109
4109
|
*/
|
|
4110
|
-
Action?: Action;
|
|
4110
|
+
Action?: Action | undefined;
|
|
4111
4111
|
/**
|
|
4112
4112
|
* <p>The unique identifier for the event action.</p>
|
|
4113
4113
|
* @public
|
|
@@ -4122,32 +4122,32 @@ export interface UpdateEventActionResponse {
|
|
|
4122
4122
|
* <p>What occurs after a certain event.</p>
|
|
4123
4123
|
* @public
|
|
4124
4124
|
*/
|
|
4125
|
-
Action?: Action;
|
|
4125
|
+
Action?: Action | undefined;
|
|
4126
4126
|
/**
|
|
4127
4127
|
* <p>The ARN for the event action.</p>
|
|
4128
4128
|
* @public
|
|
4129
4129
|
*/
|
|
4130
|
-
Arn?: string;
|
|
4130
|
+
Arn?: string | undefined;
|
|
4131
4131
|
/**
|
|
4132
4132
|
* <p>The date and time that the event action was created, in ISO 8601 format.</p>
|
|
4133
4133
|
* @public
|
|
4134
4134
|
*/
|
|
4135
|
-
CreatedAt?: Date;
|
|
4135
|
+
CreatedAt?: Date | undefined;
|
|
4136
4136
|
/**
|
|
4137
4137
|
* <p>What occurs to start an action.</p>
|
|
4138
4138
|
* @public
|
|
4139
4139
|
*/
|
|
4140
|
-
Event?: Event;
|
|
4140
|
+
Event?: Event | undefined;
|
|
4141
4141
|
/**
|
|
4142
4142
|
* <p>The unique identifier for the event action.</p>
|
|
4143
4143
|
* @public
|
|
4144
4144
|
*/
|
|
4145
|
-
Id?: string;
|
|
4145
|
+
Id?: string | undefined;
|
|
4146
4146
|
/**
|
|
4147
4147
|
* <p>The date and time that the event action was last updated, in ISO 8601 format.</p>
|
|
4148
4148
|
* @public
|
|
4149
4149
|
*/
|
|
4150
|
-
UpdatedAt?: Date;
|
|
4150
|
+
UpdatedAt?: Date | undefined;
|
|
4151
4151
|
}
|
|
4152
4152
|
/**
|
|
4153
4153
|
* @public
|
|
@@ -4157,7 +4157,7 @@ export interface UpdateRevisionRequest {
|
|
|
4157
4157
|
* <p>An optional comment about the revision.</p>
|
|
4158
4158
|
* @public
|
|
4159
4159
|
*/
|
|
4160
|
-
Comment?: string;
|
|
4160
|
+
Comment?: string | undefined;
|
|
4161
4161
|
/**
|
|
4162
4162
|
* <p>The unique identifier for a data set.</p>
|
|
4163
4163
|
* @public
|
|
@@ -4169,7 +4169,7 @@ export interface UpdateRevisionRequest {
|
|
|
4169
4169
|
* your products.</p>
|
|
4170
4170
|
* @public
|
|
4171
4171
|
*/
|
|
4172
|
-
Finalized?: boolean;
|
|
4172
|
+
Finalized?: boolean | undefined;
|
|
4173
4173
|
/**
|
|
4174
4174
|
* <p>The unique identifier for a revision.</p>
|
|
4175
4175
|
* @public
|
|
@@ -4184,22 +4184,22 @@ export interface UpdateRevisionResponse {
|
|
|
4184
4184
|
* <p>The ARN for the revision.</p>
|
|
4185
4185
|
* @public
|
|
4186
4186
|
*/
|
|
4187
|
-
Arn?: string;
|
|
4187
|
+
Arn?: string | undefined;
|
|
4188
4188
|
/**
|
|
4189
4189
|
* <p>An optional comment about the revision.</p>
|
|
4190
4190
|
* @public
|
|
4191
4191
|
*/
|
|
4192
|
-
Comment?: string;
|
|
4192
|
+
Comment?: string | undefined;
|
|
4193
4193
|
/**
|
|
4194
4194
|
* <p>The date and time that the revision was created, in ISO 8601 format.</p>
|
|
4195
4195
|
* @public
|
|
4196
4196
|
*/
|
|
4197
|
-
CreatedAt?: Date;
|
|
4197
|
+
CreatedAt?: Date | undefined;
|
|
4198
4198
|
/**
|
|
4199
4199
|
* <p>The unique identifier for the data set associated with the data set revision.</p>
|
|
4200
4200
|
* @public
|
|
4201
4201
|
*/
|
|
4202
|
-
DataSetId?: string;
|
|
4202
|
+
DataSetId?: string | undefined;
|
|
4203
4203
|
/**
|
|
4204
4204
|
* <p>To publish a revision to a data set in a product, the revision must first be finalized.
|
|
4205
4205
|
* Finalizing a revision tells AWS Data Exchange that changes to the assets in the revision
|
|
@@ -4209,38 +4209,38 @@ export interface UpdateRevisionResponse {
|
|
|
4209
4209
|
* When using the API, revisions are uniquely identified by their ARN.</p>
|
|
4210
4210
|
* @public
|
|
4211
4211
|
*/
|
|
4212
|
-
Finalized?: boolean;
|
|
4212
|
+
Finalized?: boolean | undefined;
|
|
4213
4213
|
/**
|
|
4214
4214
|
* <p>The unique identifier for the revision.</p>
|
|
4215
4215
|
* @public
|
|
4216
4216
|
*/
|
|
4217
|
-
Id?: string;
|
|
4217
|
+
Id?: string | undefined;
|
|
4218
4218
|
/**
|
|
4219
4219
|
* <p>The revision ID of the owned revision corresponding to the entitled revision being
|
|
4220
4220
|
* viewed. This parameter is returned when a revision owner is viewing the entitled copy of
|
|
4221
4221
|
* its owned revision.</p>
|
|
4222
4222
|
* @public
|
|
4223
4223
|
*/
|
|
4224
|
-
SourceId?: string;
|
|
4224
|
+
SourceId?: string | undefined;
|
|
4225
4225
|
/**
|
|
4226
4226
|
* <p>The date and time that the revision was last updated, in ISO 8601 format.</p>
|
|
4227
4227
|
* @public
|
|
4228
4228
|
*/
|
|
4229
|
-
UpdatedAt?: Date;
|
|
4229
|
+
UpdatedAt?: Date | undefined;
|
|
4230
4230
|
/**
|
|
4231
4231
|
* <p>A required comment to inform subscribers of the reason their access to the revision was
|
|
4232
4232
|
* revoked.</p>
|
|
4233
4233
|
* @public
|
|
4234
4234
|
*/
|
|
4235
|
-
RevocationComment?: string;
|
|
4235
|
+
RevocationComment?: string | undefined;
|
|
4236
4236
|
/**
|
|
4237
4237
|
* <p>A status indicating that subscribers' access to the revision was revoked.</p>
|
|
4238
4238
|
* @public
|
|
4239
4239
|
*/
|
|
4240
|
-
Revoked?: boolean;
|
|
4240
|
+
Revoked?: boolean | undefined;
|
|
4241
4241
|
/**
|
|
4242
4242
|
* <p>The date and time that the revision was revoked, in ISO 8601 format.</p>
|
|
4243
4243
|
* @public
|
|
4244
4244
|
*/
|
|
4245
|
-
RevokedAt?: Date;
|
|
4245
|
+
RevokedAt?: Date | undefined;
|
|
4246
4246
|
}
|