cdk-docker-image-deployment 0.0.184 → 0.0.186
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +2 -1
- package/node_modules/aws-sdk/apis/dms-2016-01-01.min.json +366 -179
- package/node_modules/aws-sdk/apis/dms-2016-01-01.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +114 -105
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +84 -35
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +33 -0
- package/node_modules/aws-sdk/apis/mediapackage-vod-2018-11-07.min.json +24 -0
- package/node_modules/aws-sdk/apis/route53resolver-2018-04-01.min.json +98 -80
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +193 -185
- package/node_modules/aws-sdk/clients/athena.d.ts +7 -3
- package/node_modules/aws-sdk/clients/dms.d.ts +294 -22
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +25 -11
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +50 -0
- package/node_modules/aws-sdk/clients/location.d.ts +2 -2
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +47 -3
- package/node_modules/aws-sdk/clients/mediapackagevod.d.ts +33 -1
- package/node_modules/aws-sdk/clients/route53resolver.d.ts +71 -26
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +20 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk.js +119 -109
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +25 -11
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -627,7 +627,7 @@ declare namespace DynamoDB {
|
|
|
627
627
|
/**
|
|
628
628
|
* The target value for the metric. The range is 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
|
|
629
629
|
*/
|
|
630
|
-
TargetValue:
|
|
630
|
+
TargetValue: DoubleObject;
|
|
631
631
|
}
|
|
632
632
|
export interface AutoScalingTargetTrackingScalingPolicyConfigurationUpdate {
|
|
633
633
|
/**
|
|
@@ -645,7 +645,7 @@ declare namespace DynamoDB {
|
|
|
645
645
|
/**
|
|
646
646
|
* The target value for the metric. The range is 8.515920e-109 to 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
|
|
647
647
|
*/
|
|
648
|
-
TargetValue:
|
|
648
|
+
TargetValue: DoubleObject;
|
|
649
649
|
}
|
|
650
650
|
export type Backfilling = boolean;
|
|
651
651
|
export type BackupArn = string;
|
|
@@ -1106,6 +1106,10 @@ declare namespace DynamoDB {
|
|
|
1106
1106
|
* The table class of the new table. Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS.
|
|
1107
1107
|
*/
|
|
1108
1108
|
TableClass?: TableClass;
|
|
1109
|
+
/**
|
|
1110
|
+
* Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table.
|
|
1111
|
+
*/
|
|
1112
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
1109
1113
|
}
|
|
1110
1114
|
export interface CreateTableOutput {
|
|
1111
1115
|
/**
|
|
@@ -1254,6 +1258,7 @@ declare namespace DynamoDB {
|
|
|
1254
1258
|
*/
|
|
1255
1259
|
TableDescription?: TableDescription;
|
|
1256
1260
|
}
|
|
1261
|
+
export type DeletionProtectionEnabled = boolean;
|
|
1257
1262
|
export interface DescribeBackupInput {
|
|
1258
1263
|
/**
|
|
1259
1264
|
* The Amazon Resource Name (ARN) associated with the backup.
|
|
@@ -1447,7 +1452,7 @@ declare namespace DynamoDB {
|
|
|
1447
1452
|
TimeToLiveDescription?: TimeToLiveDescription;
|
|
1448
1453
|
}
|
|
1449
1454
|
export type DestinationStatus = "ENABLING"|"ACTIVE"|"DISABLING"|"DISABLED"|"ENABLE_FAILED"|string;
|
|
1450
|
-
export type
|
|
1455
|
+
export type DoubleObject = number;
|
|
1451
1456
|
export interface Endpoint {
|
|
1452
1457
|
/**
|
|
1453
1458
|
* IP address of the endpoint.
|
|
@@ -1810,11 +1815,11 @@ declare namespace DynamoDB {
|
|
|
1810
1815
|
/**
|
|
1811
1816
|
* The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
1812
1817
|
*/
|
|
1813
|
-
IndexSizeBytes?:
|
|
1818
|
+
IndexSizeBytes?: LongObject;
|
|
1814
1819
|
/**
|
|
1815
1820
|
* The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
1816
1821
|
*/
|
|
1817
|
-
ItemCount?:
|
|
1822
|
+
ItemCount?: LongObject;
|
|
1818
1823
|
/**
|
|
1819
1824
|
* The Amazon Resource Name (ARN) that uniquely identifies the index.
|
|
1820
1825
|
*/
|
|
@@ -2006,7 +2011,7 @@ declare namespace DynamoDB {
|
|
|
2006
2011
|
/**
|
|
2007
2012
|
* The total size of data processed from the source file, in Bytes.
|
|
2008
2013
|
*/
|
|
2009
|
-
ProcessedSizeBytes?:
|
|
2014
|
+
ProcessedSizeBytes?: LongObject;
|
|
2010
2015
|
/**
|
|
2011
2016
|
* The total number of items processed from the source file.
|
|
2012
2017
|
*/
|
|
@@ -2381,11 +2386,11 @@ declare namespace DynamoDB {
|
|
|
2381
2386
|
/**
|
|
2382
2387
|
* The total size of the specified index, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2383
2388
|
*/
|
|
2384
|
-
IndexSizeBytes?:
|
|
2389
|
+
IndexSizeBytes?: LongObject;
|
|
2385
2390
|
/**
|
|
2386
2391
|
* The number of items in the specified index. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
2387
2392
|
*/
|
|
2388
|
-
ItemCount?:
|
|
2393
|
+
ItemCount?: LongObject;
|
|
2389
2394
|
/**
|
|
2390
2395
|
* The Amazon Resource Name (ARN) that uniquely identifies the index.
|
|
2391
2396
|
*/
|
|
@@ -2409,6 +2414,7 @@ declare namespace DynamoDB {
|
|
|
2409
2414
|
export type LocalSecondaryIndexList = LocalSecondaryIndex[];
|
|
2410
2415
|
export type LocalSecondaryIndexes = LocalSecondaryIndexInfo[];
|
|
2411
2416
|
export type Long = number;
|
|
2417
|
+
export type LongObject = number;
|
|
2412
2418
|
export type MapAttributeValue = {[key: string]: AttributeValue};
|
|
2413
2419
|
export type NextTokenString = string;
|
|
2414
2420
|
export type NonKeyAttributeName = string;
|
|
@@ -3196,7 +3202,7 @@ declare namespace DynamoDB {
|
|
|
3196
3202
|
/**
|
|
3197
3203
|
* Size of the table in bytes. Note that this is an approximate value.
|
|
3198
3204
|
*/
|
|
3199
|
-
TableSizeBytes?:
|
|
3205
|
+
TableSizeBytes?: LongObject;
|
|
3200
3206
|
/**
|
|
3201
3207
|
* Schema of the table.
|
|
3202
3208
|
*/
|
|
@@ -3335,11 +3341,11 @@ declare namespace DynamoDB {
|
|
|
3335
3341
|
/**
|
|
3336
3342
|
* The total size of the specified table, in bytes. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
3337
3343
|
*/
|
|
3338
|
-
TableSizeBytes?:
|
|
3344
|
+
TableSizeBytes?: LongObject;
|
|
3339
3345
|
/**
|
|
3340
3346
|
* The number of items in the specified table. DynamoDB updates this value approximately every six hours. Recent changes might not be reflected in this value.
|
|
3341
3347
|
*/
|
|
3342
|
-
ItemCount?:
|
|
3348
|
+
ItemCount?: LongObject;
|
|
3343
3349
|
/**
|
|
3344
3350
|
* The Amazon Resource Name (ARN) that uniquely identifies the table.
|
|
3345
3351
|
*/
|
|
@@ -3396,6 +3402,10 @@ declare namespace DynamoDB {
|
|
|
3396
3402
|
* Contains details of the table class.
|
|
3397
3403
|
*/
|
|
3398
3404
|
TableClassSummary?: TableClassSummary;
|
|
3405
|
+
/**
|
|
3406
|
+
* Indicates whether deletion protection is enabled (true) or disabled (false) on the table.
|
|
3407
|
+
*/
|
|
3408
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
3399
3409
|
}
|
|
3400
3410
|
export type TableId = string;
|
|
3401
3411
|
export type TableName = string;
|
|
@@ -3788,6 +3798,10 @@ declare namespace DynamoDB {
|
|
|
3788
3798
|
* The table class of the table to be updated. Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS.
|
|
3789
3799
|
*/
|
|
3790
3800
|
TableClass?: TableClass;
|
|
3801
|
+
/**
|
|
3802
|
+
* Indicates whether deletion protection is to be enabled (true) or disabled (false) on the table.
|
|
3803
|
+
*/
|
|
3804
|
+
DeletionProtectionEnabled?: DeletionProtectionEnabled;
|
|
3791
3805
|
}
|
|
3792
3806
|
export interface UpdateTableOutput {
|
|
3793
3807
|
/**
|
|
@@ -23766,7 +23766,7 @@ declare namespace EC2 {
|
|
|
23766
23766
|
*/
|
|
23767
23767
|
IncludeAllTagsOfInstance?: Boolean;
|
|
23768
23768
|
}
|
|
23769
|
-
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|string;
|
|
23769
|
+
export type InstanceType = "a1.medium"|"a1.large"|"a1.xlarge"|"a1.2xlarge"|"a1.4xlarge"|"a1.metal"|"c1.medium"|"c1.xlarge"|"c3.large"|"c3.xlarge"|"c3.2xlarge"|"c3.4xlarge"|"c3.8xlarge"|"c4.large"|"c4.xlarge"|"c4.2xlarge"|"c4.4xlarge"|"c4.8xlarge"|"c5.large"|"c5.xlarge"|"c5.2xlarge"|"c5.4xlarge"|"c5.9xlarge"|"c5.12xlarge"|"c5.18xlarge"|"c5.24xlarge"|"c5.metal"|"c5a.large"|"c5a.xlarge"|"c5a.2xlarge"|"c5a.4xlarge"|"c5a.8xlarge"|"c5a.12xlarge"|"c5a.16xlarge"|"c5a.24xlarge"|"c5ad.large"|"c5ad.xlarge"|"c5ad.2xlarge"|"c5ad.4xlarge"|"c5ad.8xlarge"|"c5ad.12xlarge"|"c5ad.16xlarge"|"c5ad.24xlarge"|"c5d.large"|"c5d.xlarge"|"c5d.2xlarge"|"c5d.4xlarge"|"c5d.9xlarge"|"c5d.12xlarge"|"c5d.18xlarge"|"c5d.24xlarge"|"c5d.metal"|"c5n.large"|"c5n.xlarge"|"c5n.2xlarge"|"c5n.4xlarge"|"c5n.9xlarge"|"c5n.18xlarge"|"c5n.metal"|"c6g.medium"|"c6g.large"|"c6g.xlarge"|"c6g.2xlarge"|"c6g.4xlarge"|"c6g.8xlarge"|"c6g.12xlarge"|"c6g.16xlarge"|"c6g.metal"|"c6gd.medium"|"c6gd.large"|"c6gd.xlarge"|"c6gd.2xlarge"|"c6gd.4xlarge"|"c6gd.8xlarge"|"c6gd.12xlarge"|"c6gd.16xlarge"|"c6gd.metal"|"c6gn.medium"|"c6gn.large"|"c6gn.xlarge"|"c6gn.2xlarge"|"c6gn.4xlarge"|"c6gn.8xlarge"|"c6gn.12xlarge"|"c6gn.16xlarge"|"c6i.large"|"c6i.xlarge"|"c6i.2xlarge"|"c6i.4xlarge"|"c6i.8xlarge"|"c6i.12xlarge"|"c6i.16xlarge"|"c6i.24xlarge"|"c6i.32xlarge"|"c6i.metal"|"cc1.4xlarge"|"cc2.8xlarge"|"cg1.4xlarge"|"cr1.8xlarge"|"d2.xlarge"|"d2.2xlarge"|"d2.4xlarge"|"d2.8xlarge"|"d3.xlarge"|"d3.2xlarge"|"d3.4xlarge"|"d3.8xlarge"|"d3en.xlarge"|"d3en.2xlarge"|"d3en.4xlarge"|"d3en.6xlarge"|"d3en.8xlarge"|"d3en.12xlarge"|"dl1.24xlarge"|"f1.2xlarge"|"f1.4xlarge"|"f1.16xlarge"|"g2.2xlarge"|"g2.8xlarge"|"g3.4xlarge"|"g3.8xlarge"|"g3.16xlarge"|"g3s.xlarge"|"g4ad.xlarge"|"g4ad.2xlarge"|"g4ad.4xlarge"|"g4ad.8xlarge"|"g4ad.16xlarge"|"g4dn.xlarge"|"g4dn.2xlarge"|"g4dn.4xlarge"|"g4dn.8xlarge"|"g4dn.12xlarge"|"g4dn.16xlarge"|"g4dn.metal"|"g5.xlarge"|"g5.2xlarge"|"g5.4xlarge"|"g5.8xlarge"|"g5.12xlarge"|"g5.16xlarge"|"g5.24xlarge"|"g5.48xlarge"|"g5g.xlarge"|"g5g.2xlarge"|"g5g.4xlarge"|"g5g.8xlarge"|"g5g.16xlarge"|"g5g.metal"|"hi1.4xlarge"|"hpc6a.48xlarge"|"hs1.8xlarge"|"h1.2xlarge"|"h1.4xlarge"|"h1.8xlarge"|"h1.16xlarge"|"i2.xlarge"|"i2.2xlarge"|"i2.4xlarge"|"i2.8xlarge"|"i3.large"|"i3.xlarge"|"i3.2xlarge"|"i3.4xlarge"|"i3.8xlarge"|"i3.16xlarge"|"i3.metal"|"i3en.large"|"i3en.xlarge"|"i3en.2xlarge"|"i3en.3xlarge"|"i3en.6xlarge"|"i3en.12xlarge"|"i3en.24xlarge"|"i3en.metal"|"im4gn.large"|"im4gn.xlarge"|"im4gn.2xlarge"|"im4gn.4xlarge"|"im4gn.8xlarge"|"im4gn.16xlarge"|"inf1.xlarge"|"inf1.2xlarge"|"inf1.6xlarge"|"inf1.24xlarge"|"is4gen.medium"|"is4gen.large"|"is4gen.xlarge"|"is4gen.2xlarge"|"is4gen.4xlarge"|"is4gen.8xlarge"|"m1.small"|"m1.medium"|"m1.large"|"m1.xlarge"|"m2.xlarge"|"m2.2xlarge"|"m2.4xlarge"|"m3.medium"|"m3.large"|"m3.xlarge"|"m3.2xlarge"|"m4.large"|"m4.xlarge"|"m4.2xlarge"|"m4.4xlarge"|"m4.10xlarge"|"m4.16xlarge"|"m5.large"|"m5.xlarge"|"m5.2xlarge"|"m5.4xlarge"|"m5.8xlarge"|"m5.12xlarge"|"m5.16xlarge"|"m5.24xlarge"|"m5.metal"|"m5a.large"|"m5a.xlarge"|"m5a.2xlarge"|"m5a.4xlarge"|"m5a.8xlarge"|"m5a.12xlarge"|"m5a.16xlarge"|"m5a.24xlarge"|"m5ad.large"|"m5ad.xlarge"|"m5ad.2xlarge"|"m5ad.4xlarge"|"m5ad.8xlarge"|"m5ad.12xlarge"|"m5ad.16xlarge"|"m5ad.24xlarge"|"m5d.large"|"m5d.xlarge"|"m5d.2xlarge"|"m5d.4xlarge"|"m5d.8xlarge"|"m5d.12xlarge"|"m5d.16xlarge"|"m5d.24xlarge"|"m5d.metal"|"m5dn.large"|"m5dn.xlarge"|"m5dn.2xlarge"|"m5dn.4xlarge"|"m5dn.8xlarge"|"m5dn.12xlarge"|"m5dn.16xlarge"|"m5dn.24xlarge"|"m5dn.metal"|"m5n.large"|"m5n.xlarge"|"m5n.2xlarge"|"m5n.4xlarge"|"m5n.8xlarge"|"m5n.12xlarge"|"m5n.16xlarge"|"m5n.24xlarge"|"m5n.metal"|"m5zn.large"|"m5zn.xlarge"|"m5zn.2xlarge"|"m5zn.3xlarge"|"m5zn.6xlarge"|"m5zn.12xlarge"|"m5zn.metal"|"m6a.large"|"m6a.xlarge"|"m6a.2xlarge"|"m6a.4xlarge"|"m6a.8xlarge"|"m6a.12xlarge"|"m6a.16xlarge"|"m6a.24xlarge"|"m6a.32xlarge"|"m6a.48xlarge"|"m6g.metal"|"m6g.medium"|"m6g.large"|"m6g.xlarge"|"m6g.2xlarge"|"m6g.4xlarge"|"m6g.8xlarge"|"m6g.12xlarge"|"m6g.16xlarge"|"m6gd.metal"|"m6gd.medium"|"m6gd.large"|"m6gd.xlarge"|"m6gd.2xlarge"|"m6gd.4xlarge"|"m6gd.8xlarge"|"m6gd.12xlarge"|"m6gd.16xlarge"|"m6i.large"|"m6i.xlarge"|"m6i.2xlarge"|"m6i.4xlarge"|"m6i.8xlarge"|"m6i.12xlarge"|"m6i.16xlarge"|"m6i.24xlarge"|"m6i.32xlarge"|"m6i.metal"|"mac1.metal"|"p2.xlarge"|"p2.8xlarge"|"p2.16xlarge"|"p3.2xlarge"|"p3.8xlarge"|"p3.16xlarge"|"p3dn.24xlarge"|"p4d.24xlarge"|"r3.large"|"r3.xlarge"|"r3.2xlarge"|"r3.4xlarge"|"r3.8xlarge"|"r4.large"|"r4.xlarge"|"r4.2xlarge"|"r4.4xlarge"|"r4.8xlarge"|"r4.16xlarge"|"r5.large"|"r5.xlarge"|"r5.2xlarge"|"r5.4xlarge"|"r5.8xlarge"|"r5.12xlarge"|"r5.16xlarge"|"r5.24xlarge"|"r5.metal"|"r5a.large"|"r5a.xlarge"|"r5a.2xlarge"|"r5a.4xlarge"|"r5a.8xlarge"|"r5a.12xlarge"|"r5a.16xlarge"|"r5a.24xlarge"|"r5ad.large"|"r5ad.xlarge"|"r5ad.2xlarge"|"r5ad.4xlarge"|"r5ad.8xlarge"|"r5ad.12xlarge"|"r5ad.16xlarge"|"r5ad.24xlarge"|"r5b.large"|"r5b.xlarge"|"r5b.2xlarge"|"r5b.4xlarge"|"r5b.8xlarge"|"r5b.12xlarge"|"r5b.16xlarge"|"r5b.24xlarge"|"r5b.metal"|"r5d.large"|"r5d.xlarge"|"r5d.2xlarge"|"r5d.4xlarge"|"r5d.8xlarge"|"r5d.12xlarge"|"r5d.16xlarge"|"r5d.24xlarge"|"r5d.metal"|"r5dn.large"|"r5dn.xlarge"|"r5dn.2xlarge"|"r5dn.4xlarge"|"r5dn.8xlarge"|"r5dn.12xlarge"|"r5dn.16xlarge"|"r5dn.24xlarge"|"r5dn.metal"|"r5n.large"|"r5n.xlarge"|"r5n.2xlarge"|"r5n.4xlarge"|"r5n.8xlarge"|"r5n.12xlarge"|"r5n.16xlarge"|"r5n.24xlarge"|"r5n.metal"|"r6g.medium"|"r6g.large"|"r6g.xlarge"|"r6g.2xlarge"|"r6g.4xlarge"|"r6g.8xlarge"|"r6g.12xlarge"|"r6g.16xlarge"|"r6g.metal"|"r6gd.medium"|"r6gd.large"|"r6gd.xlarge"|"r6gd.2xlarge"|"r6gd.4xlarge"|"r6gd.8xlarge"|"r6gd.12xlarge"|"r6gd.16xlarge"|"r6gd.metal"|"r6i.large"|"r6i.xlarge"|"r6i.2xlarge"|"r6i.4xlarge"|"r6i.8xlarge"|"r6i.12xlarge"|"r6i.16xlarge"|"r6i.24xlarge"|"r6i.32xlarge"|"r6i.metal"|"t1.micro"|"t2.nano"|"t2.micro"|"t2.small"|"t2.medium"|"t2.large"|"t2.xlarge"|"t2.2xlarge"|"t3.nano"|"t3.micro"|"t3.small"|"t3.medium"|"t3.large"|"t3.xlarge"|"t3.2xlarge"|"t3a.nano"|"t3a.micro"|"t3a.small"|"t3a.medium"|"t3a.large"|"t3a.xlarge"|"t3a.2xlarge"|"t4g.nano"|"t4g.micro"|"t4g.small"|"t4g.medium"|"t4g.large"|"t4g.xlarge"|"t4g.2xlarge"|"u-6tb1.56xlarge"|"u-6tb1.112xlarge"|"u-9tb1.112xlarge"|"u-12tb1.112xlarge"|"u-6tb1.metal"|"u-9tb1.metal"|"u-12tb1.metal"|"u-18tb1.metal"|"u-24tb1.metal"|"vt1.3xlarge"|"vt1.6xlarge"|"vt1.24xlarge"|"x1.16xlarge"|"x1.32xlarge"|"x1e.xlarge"|"x1e.2xlarge"|"x1e.4xlarge"|"x1e.8xlarge"|"x1e.16xlarge"|"x1e.32xlarge"|"x2iezn.2xlarge"|"x2iezn.4xlarge"|"x2iezn.6xlarge"|"x2iezn.8xlarge"|"x2iezn.12xlarge"|"x2iezn.metal"|"x2gd.medium"|"x2gd.large"|"x2gd.xlarge"|"x2gd.2xlarge"|"x2gd.4xlarge"|"x2gd.8xlarge"|"x2gd.12xlarge"|"x2gd.16xlarge"|"x2gd.metal"|"z1d.large"|"z1d.xlarge"|"z1d.2xlarge"|"z1d.3xlarge"|"z1d.6xlarge"|"z1d.12xlarge"|"z1d.metal"|"x2idn.16xlarge"|"x2idn.24xlarge"|"x2idn.32xlarge"|"x2iedn.xlarge"|"x2iedn.2xlarge"|"x2iedn.4xlarge"|"x2iedn.8xlarge"|"x2iedn.16xlarge"|"x2iedn.24xlarge"|"x2iedn.32xlarge"|"c6a.large"|"c6a.xlarge"|"c6a.2xlarge"|"c6a.4xlarge"|"c6a.8xlarge"|"c6a.12xlarge"|"c6a.16xlarge"|"c6a.24xlarge"|"c6a.32xlarge"|"c6a.48xlarge"|"c6a.metal"|"m6a.metal"|"i4i.large"|"i4i.xlarge"|"i4i.2xlarge"|"i4i.4xlarge"|"i4i.8xlarge"|"i4i.16xlarge"|"i4i.32xlarge"|"i4i.metal"|"x2idn.metal"|"x2iedn.metal"|"c7g.medium"|"c7g.large"|"c7g.xlarge"|"c7g.2xlarge"|"c7g.4xlarge"|"c7g.8xlarge"|"c7g.12xlarge"|"c7g.16xlarge"|"mac2.metal"|"c6id.large"|"c6id.xlarge"|"c6id.2xlarge"|"c6id.4xlarge"|"c6id.8xlarge"|"c6id.12xlarge"|"c6id.16xlarge"|"c6id.24xlarge"|"c6id.32xlarge"|"c6id.metal"|"m6id.large"|"m6id.xlarge"|"m6id.2xlarge"|"m6id.4xlarge"|"m6id.8xlarge"|"m6id.12xlarge"|"m6id.16xlarge"|"m6id.24xlarge"|"m6id.32xlarge"|"m6id.metal"|"r6id.large"|"r6id.xlarge"|"r6id.2xlarge"|"r6id.4xlarge"|"r6id.8xlarge"|"r6id.12xlarge"|"r6id.16xlarge"|"r6id.24xlarge"|"r6id.32xlarge"|"r6id.metal"|"r6a.large"|"r6a.xlarge"|"r6a.2xlarge"|"r6a.4xlarge"|"r6a.8xlarge"|"r6a.12xlarge"|"r6a.16xlarge"|"r6a.24xlarge"|"r6a.32xlarge"|"r6a.48xlarge"|"r6a.metal"|"p4de.24xlarge"|"u-3tb1.56xlarge"|"u-18tb1.112xlarge"|"u-24tb1.112xlarge"|"trn1.2xlarge"|"trn1.32xlarge"|"hpc6id.32xlarge"|"c6in.large"|"c6in.xlarge"|"c6in.2xlarge"|"c6in.4xlarge"|"c6in.8xlarge"|"c6in.12xlarge"|"c6in.16xlarge"|"c6in.24xlarge"|"c6in.32xlarge"|"m6in.large"|"m6in.xlarge"|"m6in.2xlarge"|"m6in.4xlarge"|"m6in.8xlarge"|"m6in.12xlarge"|"m6in.16xlarge"|"m6in.24xlarge"|"m6in.32xlarge"|"m6idn.large"|"m6idn.xlarge"|"m6idn.2xlarge"|"m6idn.4xlarge"|"m6idn.8xlarge"|"m6idn.12xlarge"|"m6idn.16xlarge"|"m6idn.24xlarge"|"m6idn.32xlarge"|"r6in.large"|"r6in.xlarge"|"r6in.2xlarge"|"r6in.4xlarge"|"r6in.8xlarge"|"r6in.12xlarge"|"r6in.16xlarge"|"r6in.24xlarge"|"r6in.32xlarge"|"r6idn.large"|"r6idn.xlarge"|"r6idn.2xlarge"|"r6idn.4xlarge"|"r6idn.8xlarge"|"r6idn.12xlarge"|"r6idn.16xlarge"|"r6idn.24xlarge"|"r6idn.32xlarge"|"c7g.metal"|"m7g.medium"|"m7g.large"|"m7g.xlarge"|"m7g.2xlarge"|"m7g.4xlarge"|"m7g.8xlarge"|"m7g.12xlarge"|"m7g.16xlarge"|"m7g.metal"|"r7g.medium"|"r7g.large"|"r7g.xlarge"|"r7g.2xlarge"|"r7g.4xlarge"|"r7g.8xlarge"|"r7g.12xlarge"|"r7g.16xlarge"|"r7g.metal"|string;
|
|
23770
23770
|
export type InstanceTypeHypervisor = "nitro"|"xen"|string;
|
|
23771
23771
|
export interface InstanceTypeInfo {
|
|
23772
23772
|
/**
|
|
@@ -132,6 +132,14 @@ declare class LakeFormation extends Service {
|
|
|
132
132
|
* Indicates to the service that the specified transaction is still active and should not be treated as idle and aborted. Write transactions that remain idle for a long period are automatically aborted unless explicitly extended.
|
|
133
133
|
*/
|
|
134
134
|
extendTransaction(callback?: (err: AWSError, data: LakeFormation.Types.ExtendTransactionResponse) => void): Request<LakeFormation.Types.ExtendTransactionResponse, AWSError>;
|
|
135
|
+
/**
|
|
136
|
+
* Returns a data cells filter.
|
|
137
|
+
*/
|
|
138
|
+
getDataCellsFilter(params: LakeFormation.Types.GetDataCellsFilterRequest, callback?: (err: AWSError, data: LakeFormation.Types.GetDataCellsFilterResponse) => void): Request<LakeFormation.Types.GetDataCellsFilterResponse, AWSError>;
|
|
139
|
+
/**
|
|
140
|
+
* Returns a data cells filter.
|
|
141
|
+
*/
|
|
142
|
+
getDataCellsFilter(callback?: (err: AWSError, data: LakeFormation.Types.GetDataCellsFilterResponse) => void): Request<LakeFormation.Types.GetDataCellsFilterResponse, AWSError>;
|
|
135
143
|
/**
|
|
136
144
|
* Retrieves the list of the data lake administrators of a Lake Formation-managed data lake.
|
|
137
145
|
*/
|
|
@@ -340,6 +348,14 @@ declare class LakeFormation extends Service {
|
|
|
340
348
|
* Starts a new transaction and returns its transaction ID. Transaction IDs are opaque objects that you can use to identify a transaction.
|
|
341
349
|
*/
|
|
342
350
|
startTransaction(callback?: (err: AWSError, data: LakeFormation.Types.StartTransactionResponse) => void): Request<LakeFormation.Types.StartTransactionResponse, AWSError>;
|
|
351
|
+
/**
|
|
352
|
+
* Updates a data cell filter.
|
|
353
|
+
*/
|
|
354
|
+
updateDataCellsFilter(params: LakeFormation.Types.UpdateDataCellsFilterRequest, callback?: (err: AWSError, data: LakeFormation.Types.UpdateDataCellsFilterResponse) => void): Request<LakeFormation.Types.UpdateDataCellsFilterResponse, AWSError>;
|
|
355
|
+
/**
|
|
356
|
+
* Updates a data cell filter.
|
|
357
|
+
*/
|
|
358
|
+
updateDataCellsFilter(callback?: (err: AWSError, data: LakeFormation.Types.UpdateDataCellsFilterResponse) => void): Request<LakeFormation.Types.UpdateDataCellsFilterResponse, AWSError>;
|
|
343
359
|
/**
|
|
344
360
|
* Updates the list of possible values for the specified LF-tag key. If the LF-tag does not exist, the operation throws an EntityNotFoundException. The values in the delete key values will be deleted from list of possible values. If any value in the delete key values is attached to a resource, then API errors out with a 400 Exception - "Update not allowed". Untag the attribute before deleting the LF-tag key's value.
|
|
345
361
|
*/
|
|
@@ -622,6 +638,7 @@ declare namespace LakeFormation {
|
|
|
622
638
|
* A wildcard with exclusions. You must specify either a ColumnNames list or the ColumnWildCard.
|
|
623
639
|
*/
|
|
624
640
|
ColumnWildcard?: ColumnWildcard;
|
|
641
|
+
VersionId?: VersionString;
|
|
625
642
|
}
|
|
626
643
|
export type DataCellsFilterList = DataCellsFilter[];
|
|
627
644
|
export interface DataCellsFilterResource {
|
|
@@ -868,6 +885,30 @@ declare namespace LakeFormation {
|
|
|
868
885
|
StringValueList?: StringValueList;
|
|
869
886
|
}
|
|
870
887
|
export type FilterConditionList = FilterCondition[];
|
|
888
|
+
export interface GetDataCellsFilterRequest {
|
|
889
|
+
/**
|
|
890
|
+
* The ID of the catalog to which the table belongs.
|
|
891
|
+
*/
|
|
892
|
+
TableCatalogId: CatalogIdString;
|
|
893
|
+
/**
|
|
894
|
+
* A database in the Glue Data Catalog.
|
|
895
|
+
*/
|
|
896
|
+
DatabaseName: NameString;
|
|
897
|
+
/**
|
|
898
|
+
* A table in the database.
|
|
899
|
+
*/
|
|
900
|
+
TableName: NameString;
|
|
901
|
+
/**
|
|
902
|
+
* The name given by the user to the data filter cell.
|
|
903
|
+
*/
|
|
904
|
+
Name: NameString;
|
|
905
|
+
}
|
|
906
|
+
export interface GetDataCellsFilterResponse {
|
|
907
|
+
/**
|
|
908
|
+
* A structure that describes certain columns on certain rows.
|
|
909
|
+
*/
|
|
910
|
+
DataCellsFilter?: DataCellsFilter;
|
|
911
|
+
}
|
|
871
912
|
export interface GetDataLakeSettingsRequest {
|
|
872
913
|
/**
|
|
873
914
|
* The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
|
|
@@ -1940,6 +1981,14 @@ declare namespace LakeFormation {
|
|
|
1940
1981
|
export type TrueFalseString = string;
|
|
1941
1982
|
export type TrustedResourceOwners = CatalogIdString[];
|
|
1942
1983
|
export type URI = string;
|
|
1984
|
+
export interface UpdateDataCellsFilterRequest {
|
|
1985
|
+
/**
|
|
1986
|
+
* A DataCellsFilter structure containing information about the data cells filter.
|
|
1987
|
+
*/
|
|
1988
|
+
TableData: DataCellsFilter;
|
|
1989
|
+
}
|
|
1990
|
+
export interface UpdateDataCellsFilterResponse {
|
|
1991
|
+
}
|
|
1943
1992
|
export interface UpdateLFTagRequest {
|
|
1944
1993
|
/**
|
|
1945
1994
|
* The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
|
|
@@ -2022,6 +2071,7 @@ declare namespace LakeFormation {
|
|
|
2022
2071
|
}
|
|
2023
2072
|
export type ValueString = string;
|
|
2024
2073
|
export type ValueStringList = ValueString[];
|
|
2074
|
+
export type VersionString = string;
|
|
2025
2075
|
export interface VirtualObject {
|
|
2026
2076
|
/**
|
|
2027
2077
|
* The path to the Amazon S3 object. Must start with s3://
|
|
@@ -1675,7 +1675,7 @@ declare namespace Location {
|
|
|
1675
1675
|
}
|
|
1676
1676
|
export interface GetMapGlyphsRequest {
|
|
1677
1677
|
/**
|
|
1678
|
-
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular Valid font stacks for GrabMaps styles: VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular | Noto Sans Medium | Noto Sans Bold Valid font stacks for Open Data
|
|
1678
|
+
* A comma-separated list of fonts to load glyphs from in order of preference. For example, Noto Sans Regular, Arial Unicode. Valid fonts stacks for Esri styles: VectorEsriDarkGrayCanvas – Ubuntu Medium Italic | Ubuntu Medium | Ubuntu Italic | Ubuntu Regular | Ubuntu Bold VectorEsriLightGrayCanvas – Ubuntu Italic | Ubuntu Regular | Ubuntu Light | Ubuntu Bold VectorEsriTopographic – Noto Sans Italic | Noto Sans Regular | Noto Sans Bold | Noto Serif Regular | Roboto Condensed Light Italic VectorEsriStreets – Arial Regular | Arial Italic | Arial Bold VectorEsriNavigation – Arial Regular | Arial Italic | Arial Bold Valid font stacks for HERE Technologies styles: VectorHereContrast – Fira GO Regular | Fira GO Bold VectorHereExplore, VectorHereExploreTruck, HybridHereExploreSatellite – Fira GO Italic | Fira GO Map | Fira GO Map Bold | Noto Sans CJK JP Bold | Noto Sans CJK JP Light | Noto Sans CJK JP Regular Valid font stacks for GrabMaps styles: VectorGrabStandardLight, VectorGrabStandardDark – Noto Sans Regular | Noto Sans Medium | Noto Sans Bold Valid font stacks for Open Data styles: VectorOpenDataStandardLight, VectorOpenDataStandardDark, VectorOpenDataVisualizationLight, VectorOpenDataVisualizationDark – Amazon Ember Regular,Noto Sans Regular | Amazon Ember Bold,Noto Sans Bold | Amazon Ember Medium,Noto Sans Medium | Amazon Ember Regular Italic,Noto Sans Italic | Amazon Ember Condensed RC Regular,Noto Sans Regular | Amazon Ember Condensed RC Bold,Noto Sans Bold The fonts used by the Open Data map styles are combined fonts that use Amazon Ember for most glyphs but Noto Sans for glyphs unsupported by Amazon Ember.
|
|
1679
1679
|
*/
|
|
1680
1680
|
FontStack: String;
|
|
1681
1681
|
/**
|
|
@@ -2285,7 +2285,7 @@ declare namespace Location {
|
|
|
2285
2285
|
export type ListTrackersResponseEntryList = ListTrackersResponseEntry[];
|
|
2286
2286
|
export interface MapConfiguration {
|
|
2287
2287
|
/**
|
|
2288
|
-
* Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. The VectorHereContrast style has been renamed from VectorHereBerlin. VectorHereBerlin has been deprecated, but will continue to work in applications that use it. VectorHereExplore – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. VectorHereExploreTruck – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. RasterHereExploreSatellite – A global map containing high resolution satellite imagery. HybridHereExploreSatellite – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved. Valid GrabMaps map styles: VectorGrabStandardLight – The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia. VectorGrabStandardDark – The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia. Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, see GrabMaps countries and area covered. Valid Open Data
|
|
2288
|
+
* Specifies the map style selected from an available data provider. Valid Esri map styles: VectorEsriDarkGrayCanvas – The Esri Dark Gray Canvas map style. A vector basemap with a dark gray, neutral background with minimal colors, labels, and features that's designed to draw attention to your thematic content. RasterEsriImagery – The Esri Imagery map style. A raster basemap that provides one meter or better satellite and aerial imagery in many parts of the world and lower resolution satellite imagery worldwide. VectorEsriLightGrayCanvas – The Esri Light Gray Canvas map style, which provides a detailed vector basemap with a light gray, neutral background style with minimal colors, labels, and features that's designed to draw attention to your thematic content. VectorEsriTopographic – The Esri Light map style, which provides a detailed vector basemap with a classic Esri map style. VectorEsriStreets – The Esri World Streets map style, which provides a detailed vector basemap for the world symbolized with a classic Esri street map style. The vector tile layer is similar in content and style to the World Street Map raster map. VectorEsriNavigation – The Esri World Navigation map style, which provides a detailed basemap for the world symbolized with a custom navigation map style that's designed for use during the day in mobile devices. Valid HERE Technologies map styles: VectorHereContrast – The HERE Contrast (Berlin) map style is a high contrast detailed base map of the world that blends 3D and 2D rendering. The VectorHereContrast style has been renamed from VectorHereBerlin. VectorHereBerlin has been deprecated, but will continue to work in applications that use it. VectorHereExplore – A default HERE map style containing a neutral, global map and its features including roads, buildings, landmarks, and water features. It also now includes a fully designed map of Japan. VectorHereExploreTruck – A global map containing truck restrictions and attributes (e.g. width / height / HAZMAT) symbolized with highlighted segments and icons on top of HERE Explore to support use cases within transport and logistics. RasterHereExploreSatellite – A global map containing high resolution satellite imagery. HybridHereExploreSatellite – A global map displaying the road network, street names, and city labels over satellite imagery. This style will automatically retrieve both raster and vector tiles, and your charges will be based on total tiles retrieved. Hybrid styles use both vector and raster tiles when rendering the map that you see. This means that more tiles are retrieved than when using either vector or raster tiles alone. Your charges will include all tiles retrieved. Valid GrabMaps map styles: VectorGrabStandardLight – The Grab Standard Light map style provides a basemap with detailed land use coloring, area names, roads, landmarks, and points of interest covering Southeast Asia. VectorGrabStandardDark – The Grab Standard Dark map style provides a dark variation of the standard basemap covering Southeast Asia. Grab provides maps only for countries in Southeast Asia, and is only available in the Asia Pacific (Singapore) Region (ap-southeast-1). For more information, see GrabMaps countries and area covered. Valid Open Data map styles: VectorOpenDataStandardLight – The Open Data Standard Light map style provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataStandardDark – Open Data Standard Dark is a dark-themed map style that provides a detailed basemap for the world suitable for website and mobile application use. The map includes highways major roads, minor roads, railways, water features, cities, parks, landmarks, building footprints, and administrative boundaries. VectorOpenDataVisualizationLight – The Open Data Visualization Light map style is a light-themed style with muted colors and fewer features that aids in understanding overlaid data. VectorOpenDataVisualizationDark – The Open Data Visualization Dark map style is a dark-themed style with muted colors and fewer features that aids in understanding overlaid data.
|
|
2289
2289
|
*/
|
|
2290
2290
|
Style: MapStyle;
|
|
2291
2291
|
}
|
|
@@ -185,6 +185,10 @@ declare namespace MediaPackage {
|
|
|
185
185
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
186
186
|
*/
|
|
187
187
|
Arn?: __string;
|
|
188
|
+
/**
|
|
189
|
+
* The date and time the Channel was created.
|
|
190
|
+
*/
|
|
191
|
+
CreatedAt?: __string;
|
|
188
192
|
/**
|
|
189
193
|
* A short text description of the Channel.
|
|
190
194
|
*/
|
|
@@ -260,6 +264,10 @@ rounded to the nearest multiple of the source segment duration.
|
|
|
260
264
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
261
265
|
*/
|
|
262
266
|
Arn?: __string;
|
|
267
|
+
/**
|
|
268
|
+
* The date and time the Channel was created.
|
|
269
|
+
*/
|
|
270
|
+
CreatedAt?: __string;
|
|
263
271
|
/**
|
|
264
272
|
* A short text description of the Channel.
|
|
265
273
|
*/
|
|
@@ -291,6 +299,10 @@ cannot be changed after a Channel is created.
|
|
|
291
299
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
292
300
|
*/
|
|
293
301
|
Arn?: __string;
|
|
302
|
+
/**
|
|
303
|
+
* The date and time the Channel was created.
|
|
304
|
+
*/
|
|
305
|
+
CreatedAt?: __string;
|
|
294
306
|
/**
|
|
295
307
|
* A short text description of the Channel.
|
|
296
308
|
*/
|
|
@@ -341,7 +353,7 @@ This cannot be changed after the HarvestJob is submitted.
|
|
|
341
353
|
*/
|
|
342
354
|
ChannelId?: __string;
|
|
343
355
|
/**
|
|
344
|
-
* The time the HarvestJob was submitted
|
|
356
|
+
* The date and time the HarvestJob was submitted.
|
|
345
357
|
|
|
346
358
|
*/
|
|
347
359
|
CreatedAt?: __string;
|
|
@@ -438,6 +450,10 @@ If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
|
438
450
|
*/
|
|
439
451
|
ChannelId?: __string;
|
|
440
452
|
CmafPackage?: CmafPackage;
|
|
453
|
+
/**
|
|
454
|
+
* The date and time the OriginEndpoint was created.
|
|
455
|
+
*/
|
|
456
|
+
CreatedAt?: __string;
|
|
441
457
|
DashPackage?: DashPackage;
|
|
442
458
|
/**
|
|
443
459
|
* A short text description of the OriginEndpoint.
|
|
@@ -576,6 +592,10 @@ rounded to the nearest multiple of the source segment duration.
|
|
|
576
592
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
577
593
|
*/
|
|
578
594
|
Arn?: __string;
|
|
595
|
+
/**
|
|
596
|
+
* The date and time the Channel was created.
|
|
597
|
+
*/
|
|
598
|
+
CreatedAt?: __string;
|
|
579
599
|
/**
|
|
580
600
|
* A short text description of the Channel.
|
|
581
601
|
*/
|
|
@@ -607,7 +627,7 @@ rounded to the nearest multiple of the source segment duration.
|
|
|
607
627
|
*/
|
|
608
628
|
ChannelId?: __string;
|
|
609
629
|
/**
|
|
610
|
-
* The time the HarvestJob was submitted
|
|
630
|
+
* The date and time the HarvestJob was submitted.
|
|
611
631
|
|
|
612
632
|
*/
|
|
613
633
|
CreatedAt?: __string;
|
|
@@ -659,6 +679,10 @@ include an explanation of why the HarvestJob failed.
|
|
|
659
679
|
*/
|
|
660
680
|
ChannelId?: __string;
|
|
661
681
|
CmafPackage?: CmafPackage;
|
|
682
|
+
/**
|
|
683
|
+
* The date and time the OriginEndpoint was created.
|
|
684
|
+
*/
|
|
685
|
+
CreatedAt?: __string;
|
|
662
686
|
DashPackage?: DashPackage;
|
|
663
687
|
/**
|
|
664
688
|
* A short text description of the OriginEndpoint.
|
|
@@ -732,7 +756,7 @@ If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
|
732
756
|
*/
|
|
733
757
|
ChannelId?: __string;
|
|
734
758
|
/**
|
|
735
|
-
* The time the HarvestJob was submitted
|
|
759
|
+
* The date and time the HarvestJob was submitted.
|
|
736
760
|
|
|
737
761
|
*/
|
|
738
762
|
CreatedAt?: __string;
|
|
@@ -1095,6 +1119,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
1095
1119
|
*/
|
|
1096
1120
|
ChannelId?: __string;
|
|
1097
1121
|
CmafPackage?: CmafPackage;
|
|
1122
|
+
/**
|
|
1123
|
+
* The date and time the OriginEndpoint was created.
|
|
1124
|
+
*/
|
|
1125
|
+
CreatedAt?: __string;
|
|
1098
1126
|
DashPackage?: DashPackage;
|
|
1099
1127
|
/**
|
|
1100
1128
|
* A short text description of the OriginEndpoint.
|
|
@@ -1155,6 +1183,10 @@ If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
|
1155
1183
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1156
1184
|
*/
|
|
1157
1185
|
Arn?: __string;
|
|
1186
|
+
/**
|
|
1187
|
+
* The date and time the Channel was created.
|
|
1188
|
+
*/
|
|
1189
|
+
CreatedAt?: __string;
|
|
1158
1190
|
/**
|
|
1159
1191
|
* A short text description of the Channel.
|
|
1160
1192
|
*/
|
|
@@ -1183,6 +1215,10 @@ If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
|
1183
1215
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1184
1216
|
*/
|
|
1185
1217
|
Arn?: __string;
|
|
1218
|
+
/**
|
|
1219
|
+
* The date and time the Channel was created.
|
|
1220
|
+
*/
|
|
1221
|
+
CreatedAt?: __string;
|
|
1186
1222
|
/**
|
|
1187
1223
|
* A short text description of the Channel.
|
|
1188
1224
|
*/
|
|
@@ -1285,6 +1321,10 @@ MediaPackage will assume when accessing the key provider service.
|
|
|
1285
1321
|
* The Amazon Resource Name (ARN) assigned to the Channel.
|
|
1286
1322
|
*/
|
|
1287
1323
|
Arn?: __string;
|
|
1324
|
+
/**
|
|
1325
|
+
* The date and time the Channel was created.
|
|
1326
|
+
*/
|
|
1327
|
+
CreatedAt?: __string;
|
|
1288
1328
|
/**
|
|
1289
1329
|
* A short text description of the Channel.
|
|
1290
1330
|
*/
|
|
@@ -1351,6 +1391,10 @@ If not specified, there will be no time delay in effect for the OriginEndpoint.
|
|
|
1351
1391
|
*/
|
|
1352
1392
|
ChannelId?: __string;
|
|
1353
1393
|
CmafPackage?: CmafPackage;
|
|
1394
|
+
/**
|
|
1395
|
+
* The date and time the OriginEndpoint was created.
|
|
1396
|
+
*/
|
|
1397
|
+
CreatedAt?: __string;
|
|
1354
1398
|
DashPackage?: DashPackage;
|
|
1355
1399
|
/**
|
|
1356
1400
|
* A short text description of the OriginEndpoint.
|
|
@@ -229,6 +229,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
229
229
|
*/
|
|
230
230
|
Arn?: __string;
|
|
231
231
|
Authorization?: Authorization;
|
|
232
|
+
/**
|
|
233
|
+
* The time the PackagingGroup was created.
|
|
234
|
+
*/
|
|
235
|
+
CreatedAt?: __string;
|
|
232
236
|
/**
|
|
233
237
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
234
238
|
*/
|
|
@@ -319,6 +323,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
319
323
|
*/
|
|
320
324
|
Arn?: __string;
|
|
321
325
|
CmafPackage?: CmafPackage;
|
|
326
|
+
/**
|
|
327
|
+
* The time the PackagingConfiguration was created.
|
|
328
|
+
*/
|
|
329
|
+
CreatedAt?: __string;
|
|
322
330
|
DashPackage?: DashPackage;
|
|
323
331
|
HlsPackage?: HlsPackage;
|
|
324
332
|
/**
|
|
@@ -347,6 +355,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
347
355
|
*/
|
|
348
356
|
Arn?: __string;
|
|
349
357
|
Authorization?: Authorization;
|
|
358
|
+
/**
|
|
359
|
+
* The time the PackagingGroup was created.
|
|
360
|
+
*/
|
|
361
|
+
CreatedAt?: __string;
|
|
350
362
|
/**
|
|
351
363
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
352
364
|
*/
|
|
@@ -379,7 +391,7 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
379
391
|
*/
|
|
380
392
|
Profile?: Profile;
|
|
381
393
|
/**
|
|
382
|
-
* The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
|
|
394
|
+
* The source of scte markers used. When set to SEGMENTS, the scte markers are sourced from the segments of the ingested content. When set to MANIFEST, the scte markers are sourced from the manifest of the ingested content.
|
|
383
395
|
*/
|
|
384
396
|
ScteMarkersSource?: ScteMarkersSource;
|
|
385
397
|
StreamSelection?: StreamSelection;
|
|
@@ -495,6 +507,10 @@ rounded to the nearest multiple of the source segment duration.
|
|
|
495
507
|
*/
|
|
496
508
|
Arn?: __string;
|
|
497
509
|
CmafPackage?: CmafPackage;
|
|
510
|
+
/**
|
|
511
|
+
* The time the PackagingConfiguration was created.
|
|
512
|
+
*/
|
|
513
|
+
CreatedAt?: __string;
|
|
498
514
|
DashPackage?: DashPackage;
|
|
499
515
|
HlsPackage?: HlsPackage;
|
|
500
516
|
/**
|
|
@@ -524,6 +540,10 @@ rounded to the nearest multiple of the source segment duration.
|
|
|
524
540
|
*/
|
|
525
541
|
Arn?: __string;
|
|
526
542
|
Authorization?: Authorization;
|
|
543
|
+
/**
|
|
544
|
+
* The time the PackagingGroup was created.
|
|
545
|
+
*/
|
|
546
|
+
CreatedAt?: __string;
|
|
527
547
|
/**
|
|
528
548
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
529
549
|
*/
|
|
@@ -747,6 +767,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
747
767
|
*/
|
|
748
768
|
Arn?: __string;
|
|
749
769
|
CmafPackage?: CmafPackage;
|
|
770
|
+
/**
|
|
771
|
+
* The time the PackagingConfiguration was created.
|
|
772
|
+
*/
|
|
773
|
+
CreatedAt?: __string;
|
|
750
774
|
DashPackage?: DashPackage;
|
|
751
775
|
HlsPackage?: HlsPackage;
|
|
752
776
|
/**
|
|
@@ -770,6 +794,10 @@ rounded to the nearest multiple of the source fragment duration.
|
|
|
770
794
|
*/
|
|
771
795
|
Arn?: __string;
|
|
772
796
|
Authorization?: Authorization;
|
|
797
|
+
/**
|
|
798
|
+
* The time the PackagingGroup was created.
|
|
799
|
+
*/
|
|
800
|
+
CreatedAt?: __string;
|
|
773
801
|
/**
|
|
774
802
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
775
803
|
*/
|
|
@@ -856,6 +884,10 @@ MediaPackage will assume when accessing the key provider service.
|
|
|
856
884
|
*/
|
|
857
885
|
Arn?: __string;
|
|
858
886
|
Authorization?: Authorization;
|
|
887
|
+
/**
|
|
888
|
+
* The time the PackagingGroup was created.
|
|
889
|
+
*/
|
|
890
|
+
CreatedAt?: __string;
|
|
859
891
|
/**
|
|
860
892
|
* The fully qualified domain name for Assets in the PackagingGroup.
|
|
861
893
|
*/
|