aws-sdk 2.1411.0 → 2.1413.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/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/dms-2016-01-01.min.json +643 -216
- package/apis/dms-2016-01-01.paginators.json +15 -0
- package/apis/ec2-2016-11-15.min.json +281 -278
- package/apis/glue-2017-03-31.min.json +146 -131
- package/apis/location-2020-11-19.min.json +79 -40
- package/apis/logs-2014-03-28.min.json +32 -33
- package/apis/medialive-2017-10-14.min.json +322 -188
- package/apis/mediatailor-2018-04-23.min.json +209 -191
- package/apis/outposts-2019-12-03.paginators.json +12 -6
- package/apis/quicksight-2018-04-01.min.json +561 -528
- package/clients/cloudwatchlogs.d.ts +32 -18
- package/clients/dms.d.ts +632 -7
- package/clients/ec2.d.ts +10 -5
- package/clients/glue.d.ts +21 -0
- package/clients/location.d.ts +50 -14
- package/clients/medialive.d.ts +101 -0
- package/clients/mediatailor.d.ts +21 -0
- package/clients/outposts.d.ts +4 -4
- package/clients/quicksight.d.ts +53 -7
- package/clients/rds.d.ts +35 -35
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +395 -354
- package/dist/aws-sdk.min.js +70 -70
- package/lib/core.js +1 -1
- package/lib/credentials/shared_ini_file_credentials.js +2 -0
- package/package.json +1 -1
package/clients/ec2.d.ts
CHANGED
@@ -21793,13 +21793,13 @@ declare namespace EC2 {
|
|
21793
21793
|
export type HibernationFlag = boolean;
|
21794
21794
|
export interface HibernationOptions {
|
21795
21795
|
/**
|
21796
|
-
* If
|
21796
|
+
* If true, your instance is enabled for hibernation; otherwise, it is not enabled for hibernation.
|
21797
21797
|
*/
|
21798
21798
|
Configured?: Boolean;
|
21799
21799
|
}
|
21800
21800
|
export interface HibernationOptionsRequest {
|
21801
21801
|
/**
|
21802
|
-
*
|
21802
|
+
* Set to true to enable your instance for hibernation. Default: false
|
21803
21803
|
*/
|
21804
21804
|
Configured?: Boolean;
|
21805
21805
|
}
|
@@ -24256,6 +24256,10 @@ declare namespace EC2 {
|
|
24256
24256
|
* The supported boot modes. For more information, see Boot modes in the Amazon EC2 User Guide.
|
24257
24257
|
*/
|
24258
24258
|
SupportedBootModes?: BootModeTypeList;
|
24259
|
+
/**
|
24260
|
+
* Indicates whether Nitro Enclaves is supported.
|
24261
|
+
*/
|
24262
|
+
NitroEnclavesSupport?: NitroEnclavesSupport;
|
24259
24263
|
}
|
24260
24264
|
export interface InstanceTypeInfoFromInstanceRequirements {
|
24261
24265
|
/**
|
@@ -29565,6 +29569,7 @@ declare namespace EC2 {
|
|
29565
29569
|
}
|
29566
29570
|
export type NewDhcpConfigurationList = NewDhcpConfiguration[];
|
29567
29571
|
export type NextToken = string;
|
29572
|
+
export type NitroEnclavesSupport = "unsupported"|"supported"|string;
|
29568
29573
|
export type OccurrenceDayRequestSet = Integer[];
|
29569
29574
|
export type OccurrenceDaySet = Integer[];
|
29570
29575
|
export type OfferingClassType = "standard"|"convertible"|string;
|
@@ -32905,7 +32910,7 @@ declare namespace EC2 {
|
|
32905
32910
|
*/
|
32906
32911
|
CapacityReservationSpecification?: CapacityReservationSpecification;
|
32907
32912
|
/**
|
32908
|
-
* Indicates whether an instance is enabled for hibernation. For more information, see Hibernate your instance in the Amazon EC2 User Guide. You can't enable hibernation and Amazon Web Services Nitro Enclaves on the same instance.
|
32913
|
+
* Indicates whether an instance is enabled for hibernation. This parameter is valid only if the instance meets the hibernation prerequisites. For more information, see Hibernate your instance in the Amazon EC2 User Guide. You can't enable hibernation and Amazon Web Services Nitro Enclaves on the same instance.
|
32909
32914
|
*/
|
32910
32915
|
HibernationOptions?: HibernationOptionsRequest;
|
32911
32916
|
/**
|
@@ -32917,7 +32922,7 @@ declare namespace EC2 {
|
|
32917
32922
|
*/
|
32918
32923
|
MetadataOptions?: InstanceMetadataOptionsRequest;
|
32919
32924
|
/**
|
32920
|
-
* Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see
|
32925
|
+
* Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide. You can't enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.
|
32921
32926
|
*/
|
32922
32927
|
EnclaveOptions?: EnclaveOptionsRequest;
|
32923
32928
|
/**
|
@@ -35232,7 +35237,7 @@ declare namespace EC2 {
|
|
35232
35237
|
/**
|
35233
35238
|
* The ID of the client connection to be terminated.
|
35234
35239
|
*/
|
35235
|
-
ConnectionId?:
|
35240
|
+
ConnectionId?: String;
|
35236
35241
|
/**
|
35237
35242
|
* The name of the user who initiated the connection. Use this option to terminate all active connections for the specified user. This option can only be used if the user has established up to five connections.
|
35238
35243
|
*/
|
package/clients/glue.d.ts
CHANGED
@@ -4402,6 +4402,10 @@ declare namespace Glue {
|
|
4402
4402
|
* The ID of the transaction.
|
4403
4403
|
*/
|
4404
4404
|
TransactionId?: TransactionIdString;
|
4405
|
+
/**
|
4406
|
+
* Specifies an OpenTableFormatInput structure when creating an open format table.
|
4407
|
+
*/
|
4408
|
+
OpenTableFormatInput?: OpenTableFormatInput;
|
4405
4409
|
}
|
4406
4410
|
export interface CreateTableResponse {
|
4407
4411
|
}
|
@@ -8061,6 +8065,16 @@ declare namespace Glue {
|
|
8061
8065
|
export type GrokPattern = string;
|
8062
8066
|
export type HashString = string;
|
8063
8067
|
export type HudiTargetCompressionType = "gzip"|"lzo"|"uncompressed"|"snappy"|string;
|
8068
|
+
export interface IcebergInput {
|
8069
|
+
/**
|
8070
|
+
* A required metadata operation. Can only be set to CREATE.
|
8071
|
+
*/
|
8072
|
+
MetadataOperation: MetadataOperation;
|
8073
|
+
/**
|
8074
|
+
* The table version for the Iceberg table. Defaults to 2.
|
8075
|
+
*/
|
8076
|
+
Version?: VersionString;
|
8077
|
+
}
|
8064
8078
|
export interface IcebergTarget {
|
8065
8079
|
/**
|
8066
8080
|
* One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix.
|
@@ -9571,6 +9585,7 @@ declare namespace Glue {
|
|
9571
9585
|
MetadataValue?: MetadataValueString;
|
9572
9586
|
}
|
9573
9587
|
export type MetadataList = MetadataKeyValuePair[];
|
9588
|
+
export type MetadataOperation = "CREATE"|string;
|
9574
9589
|
export type MetadataValueString = string;
|
9575
9590
|
export interface MicrosoftSQLServerCatalogSource {
|
9576
9591
|
/**
|
@@ -9725,6 +9740,12 @@ declare namespace Glue {
|
|
9725
9740
|
export type NullableDouble = number;
|
9726
9741
|
export type NullableInteger = number;
|
9727
9742
|
export type OneInput = NodeId[];
|
9743
|
+
export interface OpenTableFormatInput {
|
9744
|
+
/**
|
9745
|
+
* Specifies an IcebergInput structure that defines an Apache Iceberg metadata table.
|
9746
|
+
*/
|
9747
|
+
IcebergInput?: IcebergInput;
|
9748
|
+
}
|
9728
9749
|
export interface Option {
|
9729
9750
|
/**
|
9730
9751
|
* Specifies the value of the option.
|
package/clients/location.d.ts
CHANGED
@@ -92,11 +92,11 @@ declare class Location extends Service {
|
|
92
92
|
*/
|
93
93
|
createGeofenceCollection(callback?: (err: AWSError, data: Location.Types.CreateGeofenceCollectionResponse) => void): Request<Location.Types.CreateGeofenceCollectionResponse, AWSError>;
|
94
94
|
/**
|
95
|
-
* Creates an API key resource in your Amazon Web Services account, which lets you grant
|
95
|
+
* Creates an API key resource in your Amazon Web Services account, which lets you grant actions for Amazon Location resources to the API key bearer. For more information, see Using API keys.
|
96
96
|
*/
|
97
97
|
createKey(params: Location.Types.CreateKeyRequest, callback?: (err: AWSError, data: Location.Types.CreateKeyResponse) => void): Request<Location.Types.CreateKeyResponse, AWSError>;
|
98
98
|
/**
|
99
|
-
* Creates an API key resource in your Amazon Web Services account, which lets you grant
|
99
|
+
* Creates an API key resource in your Amazon Web Services account, which lets you grant actions for Amazon Location resources to the API key bearer. For more information, see Using API keys.
|
100
100
|
*/
|
101
101
|
createKey(callback?: (err: AWSError, data: Location.Types.CreateKeyResponse) => void): Request<Location.Types.CreateKeyResponse, AWSError>;
|
102
102
|
/**
|
@@ -188,11 +188,11 @@ declare class Location extends Service {
|
|
188
188
|
*/
|
189
189
|
describeGeofenceCollection(callback?: (err: AWSError, data: Location.Types.DescribeGeofenceCollectionResponse) => void): Request<Location.Types.DescribeGeofenceCollectionResponse, AWSError>;
|
190
190
|
/**
|
191
|
-
* Retrieves the API key resource details.
|
191
|
+
* Retrieves the API key resource details.
|
192
192
|
*/
|
193
193
|
describeKey(params: Location.Types.DescribeKeyRequest, callback?: (err: AWSError, data: Location.Types.DescribeKeyResponse) => void): Request<Location.Types.DescribeKeyResponse, AWSError>;
|
194
194
|
/**
|
195
|
-
* Retrieves the API key resource details.
|
195
|
+
* Retrieves the API key resource details.
|
196
196
|
*/
|
197
197
|
describeKey(callback?: (err: AWSError, data: Location.Types.DescribeKeyResponse) => void): Request<Location.Types.DescribeKeyResponse, AWSError>;
|
198
198
|
/**
|
@@ -324,11 +324,11 @@ declare class Location extends Service {
|
|
324
324
|
*/
|
325
325
|
listGeofences(callback?: (err: AWSError, data: Location.Types.ListGeofencesResponse) => void): Request<Location.Types.ListGeofencesResponse, AWSError>;
|
326
326
|
/**
|
327
|
-
* Lists API key resources in your Amazon Web Services account.
|
327
|
+
* Lists API key resources in your Amazon Web Services account.
|
328
328
|
*/
|
329
329
|
listKeys(params: Location.Types.ListKeysRequest, callback?: (err: AWSError, data: Location.Types.ListKeysResponse) => void): Request<Location.Types.ListKeysResponse, AWSError>;
|
330
330
|
/**
|
331
|
-
* Lists API key resources in your Amazon Web Services account.
|
331
|
+
* Lists API key resources in your Amazon Web Services account.
|
332
332
|
*/
|
333
333
|
listKeys(callback?: (err: AWSError, data: Location.Types.ListKeysResponse) => void): Request<Location.Types.ListKeysResponse, AWSError>;
|
334
334
|
/**
|
@@ -436,11 +436,11 @@ declare class Location extends Service {
|
|
436
436
|
*/
|
437
437
|
updateGeofenceCollection(callback?: (err: AWSError, data: Location.Types.UpdateGeofenceCollectionResponse) => void): Request<Location.Types.UpdateGeofenceCollectionResponse, AWSError>;
|
438
438
|
/**
|
439
|
-
* Updates the specified properties of a given API key resource.
|
439
|
+
* Updates the specified properties of a given API key resource.
|
440
440
|
*/
|
441
441
|
updateKey(params: Location.Types.UpdateKeyRequest, callback?: (err: AWSError, data: Location.Types.UpdateKeyResponse) => void): Request<Location.Types.UpdateKeyResponse, AWSError>;
|
442
442
|
/**
|
443
|
-
* Updates the specified properties of a given API key resource.
|
443
|
+
* Updates the specified properties of a given API key resource.
|
444
444
|
*/
|
445
445
|
updateKey(callback?: (err: AWSError, data: Location.Types.UpdateKeyResponse) => void): Request<Location.Types.UpdateKeyResponse, AWSError>;
|
446
446
|
/**
|
@@ -487,7 +487,7 @@ declare namespace Location {
|
|
487
487
|
}
|
488
488
|
export interface ApiKeyRestrictions {
|
489
489
|
/**
|
490
|
-
* A list of allowed actions that an API key resource grants permissions to perform
|
490
|
+
* A list of allowed actions that an API key resource grants permissions to perform. You must have at least one action for each type of resource. For example, if you have a place resource, you must include at least one place action. The following are valid values for the actions. Map actions geo:GetMap* - Allows all actions needed for map rendering. Place actions geo:SearchPlaceIndexForText - Allows geocoding. geo:SearchPlaceIndexForPosition - Allows reverse geocoding. geo:SearchPlaceIndexForSuggestions - Allows generating suggestions from text. GetPlace - Allows finding a place by place ID. Route actions geo:CalculateRoute - Allows point to point routing. geo:CalculateRouteMatrix - Allows calculating a matrix of routes. You must use these strings exactly. For example, to provide access to map rendering, the only valid action is geo:GetMap* as an input to the list. ["geo:GetMap*"] is valid but ["geo:GetMapTile"] is not. Similarly, you cannot use ["geo:SearchPlaceIndexFor*"] - you must list each of the Place actions separately.
|
491
491
|
*/
|
492
492
|
AllowActions: ApiKeyRestrictionsAllowActionsList;
|
493
493
|
/**
|
@@ -495,7 +495,7 @@ declare namespace Location {
|
|
495
495
|
*/
|
496
496
|
AllowReferers?: ApiKeyRestrictionsAllowReferersList;
|
497
497
|
/**
|
498
|
-
* A list of allowed resource ARNs that a API key bearer can perform actions on
|
498
|
+
* A list of allowed resource ARNs that a API key bearer can perform actions on. The ARN must be the correct ARN for a map, place, or route ARN. You may include wildcards in the resource-id to match multiple resources of the same type. The resources must be in the same partition, region, and account-id as the key that is being created. Other than wildcards, you must include the full ARN, including the arn, partition, service, region, account-id and resource-id, delimited by colons (:). No spaces allowed, even with wildcards. For example, arn:aws:geo:region:account-id:map/ExampleMap*. For more information about ARN format, see Amazon Resource Names (ARNs).
|
499
499
|
*/
|
500
500
|
AllowResources: ApiKeyRestrictionsAllowResourcesList;
|
501
501
|
}
|
@@ -673,7 +673,7 @@ declare namespace Location {
|
|
673
673
|
*/
|
674
674
|
GeofenceId: Id;
|
675
675
|
/**
|
676
|
-
*
|
676
|
+
* Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence. Format: "key" : "value"
|
677
677
|
*/
|
678
678
|
GeofenceProperties?: PropertyMap;
|
679
679
|
/**
|
@@ -780,6 +780,10 @@ declare namespace Location {
|
|
780
780
|
* Set the unit system to specify the distance. Default Value: Kilometers
|
781
781
|
*/
|
782
782
|
DistanceUnit?: DistanceUnit;
|
783
|
+
/**
|
784
|
+
* The optional API key to authorize the request.
|
785
|
+
*/
|
786
|
+
Key?: ApiKey;
|
783
787
|
/**
|
784
788
|
* Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. The TravelMode you specify also determines how you specify route preferences: If traveling by Car use the CarModeOptions parameter. If traveling by Truck use the TruckModeOptions parameter. Bicycle or Motorcycle are only valid when using Grab as a data provider, and only within Southeast Asia. Truck is not available for Grab. For more information about using Grab as a data provider, see GrabMaps in the Amazon Location Service Developer Guide. Default Value: Car
|
785
789
|
*/
|
@@ -864,6 +868,10 @@ declare namespace Location {
|
|
864
868
|
* Set to include the geometry details in the result for each path between a pair of positions. Default Value: false Valid Values: false | true
|
865
869
|
*/
|
866
870
|
IncludeLegGeometry?: Boolean;
|
871
|
+
/**
|
872
|
+
* The optional API key to authorize the request.
|
873
|
+
*/
|
874
|
+
Key?: ApiKey;
|
867
875
|
/**
|
868
876
|
* Specifies the mode of transport when calculating a route. Used in estimating the speed of travel and road compatibility. You can choose Car, Truck, Walking, Bicycle or Motorcycle as options for the TravelMode. Bicycle and Motorcycle are only valid when using Grab as a data provider, and only within Southeast Asia. Truck is not available for Grab. For more details on the using Grab for routing, including areas of coverage, see GrabMaps in the Amazon Location Service Developer Guide. The TravelMode you specify also determines how you specify route preferences: If traveling by Car use the CarModeOptions parameter. If traveling by Truck use the TruckModeOptions parameter. Default Value: Car
|
869
877
|
*/
|
@@ -1145,6 +1153,10 @@ declare namespace Location {
|
|
1145
1153
|
* An optional description for the tracker resource.
|
1146
1154
|
*/
|
1147
1155
|
Description?: ResourceDescription;
|
1156
|
+
/**
|
1157
|
+
* Whether to enable position UPDATE events from this tracker to be sent to EventBridge. You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.
|
1158
|
+
*/
|
1159
|
+
EventBridgeEnabled?: Boolean;
|
1148
1160
|
/**
|
1149
1161
|
* A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN.
|
1150
1162
|
*/
|
@@ -1466,6 +1478,10 @@ declare namespace Location {
|
|
1466
1478
|
* The optional description for the tracker resource.
|
1467
1479
|
*/
|
1468
1480
|
Description: ResourceDescription;
|
1481
|
+
/**
|
1482
|
+
* Whether UPDATE events from this tracker in EventBridge are enabled. If set to true these events will be sent to EventBridge.
|
1483
|
+
*/
|
1484
|
+
EventBridgeEnabled?: Boolean;
|
1469
1485
|
/**
|
1470
1486
|
* A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.
|
1471
1487
|
*/
|
@@ -1668,7 +1684,7 @@ declare namespace Location {
|
|
1668
1684
|
*/
|
1669
1685
|
GeofenceId: Id;
|
1670
1686
|
/**
|
1671
|
-
*
|
1687
|
+
* User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence. Format: "key" : "value"
|
1672
1688
|
*/
|
1673
1689
|
GeofenceProperties?: PropertyMap;
|
1674
1690
|
/**
|
@@ -1814,6 +1830,10 @@ declare namespace Location {
|
|
1814
1830
|
* The name of the place index resource that you want to use for the search.
|
1815
1831
|
*/
|
1816
1832
|
IndexName: ResourceName;
|
1833
|
+
/**
|
1834
|
+
* The optional API key to authorize the request.
|
1835
|
+
*/
|
1836
|
+
Key?: ApiKey;
|
1817
1837
|
/**
|
1818
1838
|
* The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English. This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result. For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language parameter set to en. The city in the results will most likely be returned as Athens. If you set the language parameter to el, for Greek, then the city in the results will more likely be returned as Αθήνα. If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
|
1819
1839
|
*/
|
@@ -1978,7 +1998,7 @@ declare namespace Location {
|
|
1978
1998
|
*/
|
1979
1999
|
GeofenceId: Id;
|
1980
2000
|
/**
|
1981
|
-
*
|
2001
|
+
* User defined properties of the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence. Format: "key" : "value"
|
1982
2002
|
*/
|
1983
2003
|
GeofenceProperties?: PropertyMap;
|
1984
2004
|
/**
|
@@ -2413,7 +2433,7 @@ declare namespace Location {
|
|
2413
2433
|
*/
|
2414
2434
|
GeofenceId: Id;
|
2415
2435
|
/**
|
2416
|
-
*
|
2436
|
+
* Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence. Format: "key" : "value"
|
2417
2437
|
*/
|
2418
2438
|
GeofenceProperties?: PropertyMap;
|
2419
2439
|
/**
|
@@ -2528,6 +2548,10 @@ declare namespace Location {
|
|
2528
2548
|
* The name of the place index resource you want to use for the search.
|
2529
2549
|
*/
|
2530
2550
|
IndexName: ResourceName;
|
2551
|
+
/**
|
2552
|
+
* The optional API key to authorize the request.
|
2553
|
+
*/
|
2554
|
+
Key?: ApiKey;
|
2531
2555
|
/**
|
2532
2556
|
* The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English. This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result. For an example, we'll use the Greek language. You search for a location around Athens, Greece, with the language parameter set to en. The city in the results will most likely be returned as Athens. If you set the language parameter to el, for Greek, then the city in the results will more likely be returned as Αθήνα. If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
|
2533
2557
|
*/
|
@@ -2590,6 +2614,10 @@ declare namespace Location {
|
|
2590
2614
|
* The name of the place index resource you want to use for the search.
|
2591
2615
|
*/
|
2592
2616
|
IndexName: ResourceName;
|
2617
|
+
/**
|
2618
|
+
* The optional API key to authorize the request.
|
2619
|
+
*/
|
2620
|
+
Key?: ApiKey;
|
2593
2621
|
/**
|
2594
2622
|
* The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English. This setting affects the languages used in the results. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result. For an example, we'll use the Greek language. You search for Athens, Gr to get suggestions with the language parameter set to en. The results found will most likely be returned as Athens, Greece. If you set the language parameter to el, for Greek, then the result found will more likely be returned as Αθήνα, Ελλάδα. If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
|
2595
2623
|
*/
|
@@ -2670,6 +2698,10 @@ declare namespace Location {
|
|
2670
2698
|
* The name of the place index resource you want to use for the search.
|
2671
2699
|
*/
|
2672
2700
|
IndexName: ResourceName;
|
2701
|
+
/**
|
2702
|
+
* The optional API key to authorize the request.
|
2703
|
+
*/
|
2704
|
+
Key?: ApiKey;
|
2673
2705
|
/**
|
2674
2706
|
* The preferred language used to return results. The value must be a valid BCP 47 language tag, for example, en for English. This setting affects the languages used in the results, but not the results themselves. If no language is specified, or not supported for a particular result, the partner automatically chooses a language for the result. For an example, we'll use the Greek language. You search for Athens, Greece, with the language parameter set to en. The result found will most likely be returned as Athens. If you set the language parameter to el, for Greek, then the result found will more likely be returned as Αθήνα. If the data provider does not have a value for Greek, the result will be in a language that the provider does support.
|
2675
2707
|
*/
|
@@ -3003,6 +3035,10 @@ declare namespace Location {
|
|
3003
3035
|
* Updates the description for the tracker resource.
|
3004
3036
|
*/
|
3005
3037
|
Description?: ResourceDescription;
|
3038
|
+
/**
|
3039
|
+
* Whether to enable position UPDATE events from this tracker to be sent to EventBridge. You do not need enable this feature to get ENTER and EXIT events for geofences with this tracker. Those events are always sent to EventBridge.
|
3040
|
+
*/
|
3041
|
+
EventBridgeEnabled?: Boolean;
|
3006
3042
|
/**
|
3007
3043
|
* Updates the position filtering for the tracker resource. Valid values: TimeBased - Location updates are evaluated against linked geofence collections, but not every location update is stored. If your update frequency is more often than 30 seconds, only one update per 30 seconds is stored for each unique device ID. DistanceBased - If the device has moved less than 30 m (98.4 ft), location updates are ignored. Location updates within this distance are neither evaluated against linked geofence collections, nor stored. This helps control costs by reducing the number of geofence evaluations and historical device positions to paginate through. Distance-based filtering can also reduce the effects of GPS noise when displaying device trajectories on a map. AccuracyBased - If the device has moved less than the measured accuracy, location updates are ignored. For example, if two consecutive updates from a device have a horizontal accuracy of 5 m and 10 m, the second update is ignored if the device has moved less than 15 m. Ignored location updates are neither evaluated against linked geofence collections, nor stored. This helps educe the effects of GPS noise when displaying device trajectories on a map, and can help control costs by reducing the number of geofence evaluations.
|
3008
3044
|
*/
|
package/clients/medialive.d.ts
CHANGED
@@ -269,6 +269,22 @@ declare class MediaLive extends Service {
|
|
269
269
|
* Get a channel schedule
|
270
270
|
*/
|
271
271
|
describeSchedule(callback?: (err: AWSError, data: MediaLive.Types.DescribeScheduleResponse) => void): Request<MediaLive.Types.DescribeScheduleResponse, AWSError>;
|
272
|
+
/**
|
273
|
+
* Get account configuration
|
274
|
+
*/
|
275
|
+
describeAccountConfiguration(params: MediaLive.Types.DescribeAccountConfigurationRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeAccountConfigurationResponse) => void): Request<MediaLive.Types.DescribeAccountConfigurationResponse, AWSError>;
|
276
|
+
/**
|
277
|
+
* Get account configuration
|
278
|
+
*/
|
279
|
+
describeAccountConfiguration(callback?: (err: AWSError, data: MediaLive.Types.DescribeAccountConfigurationResponse) => void): Request<MediaLive.Types.DescribeAccountConfigurationResponse, AWSError>;
|
280
|
+
/**
|
281
|
+
* Describe the latest thumbnails data.
|
282
|
+
*/
|
283
|
+
describeThumbnails(params: MediaLive.Types.DescribeThumbnailsRequest, callback?: (err: AWSError, data: MediaLive.Types.DescribeThumbnailsResponse) => void): Request<MediaLive.Types.DescribeThumbnailsResponse, AWSError>;
|
284
|
+
/**
|
285
|
+
* Describe the latest thumbnails data.
|
286
|
+
*/
|
287
|
+
describeThumbnails(callback?: (err: AWSError, data: MediaLive.Types.DescribeThumbnailsResponse) => void): Request<MediaLive.Types.DescribeThumbnailsResponse, AWSError>;
|
272
288
|
/**
|
273
289
|
* Produces list of channels that have been created
|
274
290
|
*/
|
@@ -373,6 +389,14 @@ declare class MediaLive extends Service {
|
|
373
389
|
* Reject the transfer of the specified input device to your AWS account.
|
374
390
|
*/
|
375
391
|
rejectInputDeviceTransfer(callback?: (err: AWSError, data: MediaLive.Types.RejectInputDeviceTransferResponse) => void): Request<MediaLive.Types.RejectInputDeviceTransferResponse, AWSError>;
|
392
|
+
/**
|
393
|
+
* Update account configuration
|
394
|
+
*/
|
395
|
+
updateAccountConfiguration(params: MediaLive.Types.UpdateAccountConfigurationRequest, callback?: (err: AWSError, data: MediaLive.Types.UpdateAccountConfigurationResponse) => void): Request<MediaLive.Types.UpdateAccountConfigurationResponse, AWSError>;
|
396
|
+
/**
|
397
|
+
* Update account configuration
|
398
|
+
*/
|
399
|
+
updateAccountConfiguration(callback?: (err: AWSError, data: MediaLive.Types.UpdateAccountConfigurationResponse) => void): Request<MediaLive.Types.UpdateAccountConfigurationResponse, AWSError>;
|
376
400
|
/**
|
377
401
|
* Starts an existing channel
|
378
402
|
*/
|
@@ -666,6 +690,12 @@ Leave set to "normal" when input does not contain pre-mixed audio + AD.
|
|
666
690
|
export interface AcceptInputDeviceTransferResponse {
|
667
691
|
}
|
668
692
|
export type AccessibilityType = "DOES_NOT_IMPLEMENT_ACCESSIBILITY_FEATURES"|"IMPLEMENTS_ACCESSIBILITY_FEATURES"|string;
|
693
|
+
export interface AccountConfiguration {
|
694
|
+
/**
|
695
|
+
* Specifies the KMS key to use for all features that use key encryption. Specify the ARN of a KMS key that you have created. Or leave blank to use the key that MediaLive creates and manages for you.
|
696
|
+
*/
|
697
|
+
KmsKeyId?: __string;
|
698
|
+
}
|
669
699
|
export type AfdSignaling = "AUTO"|"FIXED"|"NONE"|string;
|
670
700
|
export interface AncillarySourceSettings {
|
671
701
|
/**
|
@@ -2818,6 +2848,10 @@ You specify only the font family. All other style information (color, bold, posi
|
|
2818
2848
|
*/
|
2819
2849
|
TimecodeConfig: TimecodeConfig;
|
2820
2850
|
VideoDescriptions: __listOfVideoDescription;
|
2851
|
+
/**
|
2852
|
+
* Thumbnail configuration settings.
|
2853
|
+
*/
|
2854
|
+
ThumbnailConfiguration?: ThumbnailConfiguration;
|
2821
2855
|
}
|
2822
2856
|
export interface Esam {
|
2823
2857
|
/**
|
@@ -2964,6 +2998,28 @@ If you disable the feature on an existing schedule, make sure that you first del
|
|
2964
2998
|
*/
|
2965
2999
|
TimecodeBurninSettings?: TimecodeBurninSettings;
|
2966
3000
|
}
|
3001
|
+
export interface DescribeAccountConfigurationRequest {
|
3002
|
+
}
|
3003
|
+
export interface DescribeAccountConfigurationResponse {
|
3004
|
+
AccountConfiguration?: AccountConfiguration;
|
3005
|
+
}
|
3006
|
+
export interface DescribeThumbnailsRequest {
|
3007
|
+
/**
|
3008
|
+
* Unique ID of the channel
|
3009
|
+
*/
|
3010
|
+
ChannelId: __string;
|
3011
|
+
/**
|
3012
|
+
* Pipeline ID ("0" or "1")
|
3013
|
+
*/
|
3014
|
+
PipelineId: __string;
|
3015
|
+
/**
|
3016
|
+
* thumbnail type
|
3017
|
+
*/
|
3018
|
+
ThumbnailType: __string;
|
3019
|
+
}
|
3020
|
+
export interface DescribeThumbnailsResponse {
|
3021
|
+
ThumbnailDetails?: __listOfThumbnailDetail;
|
3022
|
+
}
|
2967
3023
|
export interface GlobalConfiguration {
|
2968
3024
|
/**
|
2969
3025
|
* Value to set the initial audio gain for the Live Event.
|
@@ -6220,6 +6276,12 @@ provide the language to consider when translating the image-based source to text
|
|
6220
6276
|
Scte35Descriptors: __listOfScte35Descriptor;
|
6221
6277
|
}
|
6222
6278
|
export type Scte35WebDeliveryAllowedFlag = "WEB_DELIVERY_NOT_ALLOWED"|"WEB_DELIVERY_ALLOWED"|string;
|
6279
|
+
export interface UpdateAccountConfigurationRequest {
|
6280
|
+
AccountConfiguration?: AccountConfiguration;
|
6281
|
+
}
|
6282
|
+
export interface UpdateAccountConfigurationResponse {
|
6283
|
+
AccountConfiguration?: AccountConfiguration;
|
6284
|
+
}
|
6223
6285
|
export type SmoothGroupAudioOnlyTimecodeControl = "PASSTHROUGH"|"USE_CONFIGURED_CLOCK"|string;
|
6224
6286
|
export type SmoothGroupCertificateMode = "SELF_SIGNED"|"VERIFY_AUTHENTICITY"|string;
|
6225
6287
|
export type SmoothGroupEventIdMode = "NO_EVENT_ID"|"USE_CONFIGURED"|"USE_TIMESTAMP"|string;
|
@@ -6601,6 +6663,42 @@ one destination per packager.
|
|
6601
6663
|
Strength?: TemporalFilterStrength;
|
6602
6664
|
}
|
6603
6665
|
export type TemporalFilterStrength = "AUTO"|"STRENGTH_1"|"STRENGTH_2"|"STRENGTH_3"|"STRENGTH_4"|"STRENGTH_5"|"STRENGTH_6"|"STRENGTH_7"|"STRENGTH_8"|"STRENGTH_9"|"STRENGTH_10"|"STRENGTH_11"|"STRENGTH_12"|"STRENGTH_13"|"STRENGTH_14"|"STRENGTH_15"|"STRENGTH_16"|string;
|
6666
|
+
export interface Thumbnail {
|
6667
|
+
/**
|
6668
|
+
* The binary data for the latest thumbnail.
|
6669
|
+
*/
|
6670
|
+
Body?: __string;
|
6671
|
+
/**
|
6672
|
+
* The content type for the latest thumbnail.
|
6673
|
+
*/
|
6674
|
+
ContentType?: __string;
|
6675
|
+
/**
|
6676
|
+
* Thumbnail Type
|
6677
|
+
*/
|
6678
|
+
ThumbnailType?: ThumbnailType;
|
6679
|
+
/**
|
6680
|
+
* Time stamp for the latest thumbnail.
|
6681
|
+
*/
|
6682
|
+
TimeStamp?: __timestampIso8601;
|
6683
|
+
}
|
6684
|
+
export interface ThumbnailConfiguration {
|
6685
|
+
/**
|
6686
|
+
* Whether Thumbnail is enabled.
|
6687
|
+
*/
|
6688
|
+
State: ThumbnailState;
|
6689
|
+
}
|
6690
|
+
export interface ThumbnailDetail {
|
6691
|
+
/**
|
6692
|
+
* Pipeline ID
|
6693
|
+
*/
|
6694
|
+
PipelineId?: __string;
|
6695
|
+
/**
|
6696
|
+
* thumbnails of a single pipeline
|
6697
|
+
*/
|
6698
|
+
Thumbnails?: __listOfThumbnail;
|
6699
|
+
}
|
6700
|
+
export type ThumbnailState = "AUTO"|"DISABLED"|string;
|
6701
|
+
export type ThumbnailType = "UNSPECIFIED"|"CURRENT_ACTIVE"|string;
|
6604
6702
|
export type TimecodeBurninFontSize = "EXTRA_SMALL_10"|"LARGE_48"|"MEDIUM_32"|"SMALL_16"|string;
|
6605
6703
|
export type TimecodeBurninPosition = "BOTTOM_CENTER"|"BOTTOM_LEFT"|"BOTTOM_RIGHT"|"MIDDLE_CENTER"|"MIDDLE_LEFT"|"MIDDLE_RIGHT"|"TOP_CENTER"|"TOP_LEFT"|"TOP_RIGHT"|string;
|
6606
6704
|
export interface TimecodeBurninSettings {
|
@@ -7218,6 +7316,8 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
|
|
7218
7316
|
export type __listOfRtmpAdMarkers = RtmpAdMarkers[];
|
7219
7317
|
export type __listOfScheduleAction = ScheduleAction[];
|
7220
7318
|
export type __listOfScte35Descriptor = Scte35Descriptor[];
|
7319
|
+
export type __listOfThumbnail = Thumbnail[];
|
7320
|
+
export type __listOfThumbnailDetail = ThumbnailDetail[];
|
7221
7321
|
export type __listOfTransferringInputDeviceSummary = TransferringInputDeviceSummary[];
|
7222
7322
|
export type __listOfVideoDescription = VideoDescription[];
|
7223
7323
|
export type __listOf__integer = __integer[];
|
@@ -7244,6 +7344,7 @@ If STANDARD channel, subnet IDs must be mapped to two unique availability zones
|
|
7244
7344
|
export type __stringMin3Max3 = string;
|
7245
7345
|
export type __stringMin6Max6 = string;
|
7246
7346
|
export type __stringPattern010920300 = string;
|
7347
|
+
export type __timestampIso8601 = Date;
|
7247
7348
|
export type InputDeviceThumbnail = Buffer|Uint8Array|Blob|string|Readable;
|
7248
7349
|
export type AcceptHeader = "image/jpeg"|string;
|
7249
7350
|
export type ContentType = "image/jpeg"|string;
|
package/clients/mediatailor.d.ts
CHANGED
@@ -377,6 +377,10 @@ declare namespace MediaTailor {
|
|
377
377
|
}
|
378
378
|
export type AccessType = "S3_SIGV4"|"SECRETS_MANAGER_ACCESS_TOKEN"|string;
|
379
379
|
export interface AdBreak {
|
380
|
+
/**
|
381
|
+
* Defines a list of key/value pairs that MediaTailor generates within the EXT-X-ASSETtag for SCTE35_ENHANCED output.
|
382
|
+
*/
|
383
|
+
AdBreakMetadata?: AdBreakMetadataList;
|
380
384
|
/**
|
381
385
|
* The SCTE-35 ad insertion type. Accepted value: SPLICE_INSERT, TIME_SIGNAL.
|
382
386
|
*/
|
@@ -398,12 +402,14 @@ declare namespace MediaTailor {
|
|
398
402
|
*/
|
399
403
|
TimeSignalMessage?: TimeSignalMessage;
|
400
404
|
}
|
405
|
+
export type AdBreakMetadataList = KeyValuePair[];
|
401
406
|
export interface AdMarkerPassthrough {
|
402
407
|
/**
|
403
408
|
* Enables ad marker passthrough for your configuration.
|
404
409
|
*/
|
405
410
|
Enabled?: __boolean;
|
406
411
|
}
|
412
|
+
export type AdMarkupType = "DATERANGE"|"SCTE35_ENHANCED"|string;
|
407
413
|
export interface Alert {
|
408
414
|
/**
|
409
415
|
* The code for the alert. For example, NOT_PROCESSED.
|
@@ -1445,6 +1451,10 @@ declare namespace MediaTailor {
|
|
1445
1451
|
ManifestEndpointPrefix?: __string;
|
1446
1452
|
}
|
1447
1453
|
export interface HlsPlaylistSettings {
|
1454
|
+
/**
|
1455
|
+
* Determines the type of SCTE 35 tags to use in ad markup. Specify DATERANGE to use DATERANGE tags (for live or VOD content). Specify SCTE35_ENHANCED to use EXT-X-CUE-OUT and EXT-X-CUE-IN tags (for VOD content only).
|
1456
|
+
*/
|
1457
|
+
AdMarkupType?: adMarkupTypes;
|
1448
1458
|
/**
|
1449
1459
|
* The total duration (in seconds) of each manifest. Minimum value: 30 seconds. Maximum value: 3600 seconds.
|
1450
1460
|
*/
|
@@ -1472,6 +1482,16 @@ declare namespace MediaTailor {
|
|
1472
1482
|
}
|
1473
1483
|
export type HttpPackageConfigurations = HttpPackageConfiguration[];
|
1474
1484
|
export type Integer = number;
|
1485
|
+
export interface KeyValuePair {
|
1486
|
+
/**
|
1487
|
+
* For SCTE35_ENHANCED output, defines a key. MediaTailor takes this key, and its associated value, and generates the key/value pair within the EXT-X-ASSETtag. If you specify a key, you must also specify a corresponding value.
|
1488
|
+
*/
|
1489
|
+
Key: String;
|
1490
|
+
/**
|
1491
|
+
* For SCTE35_ENHANCED output, defines a vaue. MediaTailor; takes this value, and its associated key, and generates the key/value pair within the EXT-X-ASSETtag. If you specify a value, you must also specify a corresponding key.
|
1492
|
+
*/
|
1493
|
+
Value: String;
|
1494
|
+
}
|
1475
1495
|
export interface ListAlertsRequest {
|
1476
1496
|
/**
|
1477
1497
|
* The maximum number of alerts that you want MediaTailor to return in response to the current request. If there are more than MaxResults alerts, use the value of NextToken in the response to get the next page of results.
|
@@ -2636,6 +2656,7 @@ declare namespace MediaTailor {
|
|
2636
2656
|
export type __mapOf__string = {[key: string]: __string};
|
2637
2657
|
export type __string = string;
|
2638
2658
|
export type __timestampUnix = Date;
|
2659
|
+
export type adMarkupTypes = AdMarkupType[];
|
2639
2660
|
/**
|
2640
2661
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
2641
2662
|
*/
|
package/clients/outposts.d.ts
CHANGED
@@ -303,7 +303,7 @@ declare namespace Outposts {
|
|
303
303
|
*/
|
304
304
|
RackElevation?: RackElevation;
|
305
305
|
}
|
306
|
-
export type AssetState = "ACTIVE"|"RETIRING"|string;
|
306
|
+
export type AssetState = "ACTIVE"|"RETIRING"|"ISOLATED"|string;
|
307
307
|
export type AssetType = "COMPUTE"|string;
|
308
308
|
export type AvailabilityZone = string;
|
309
309
|
export type AvailabilityZoneId = string;
|
@@ -640,7 +640,7 @@ declare namespace Outposts {
|
|
640
640
|
*/
|
641
641
|
PreviousLineItemId?: LineItemId;
|
642
642
|
/**
|
643
|
-
* The ID of the previous order.
|
643
|
+
* The ID of the previous order item.
|
644
644
|
*/
|
645
645
|
PreviousOrderId?: OrderId;
|
646
646
|
}
|
@@ -826,7 +826,7 @@ declare namespace Outposts {
|
|
826
826
|
*/
|
827
827
|
PaymentTerm?: PaymentTerm;
|
828
828
|
/**
|
829
|
-
*
|
829
|
+
* Type of order.
|
830
830
|
*/
|
831
831
|
OrderType?: OrderType;
|
832
832
|
}
|
@@ -842,7 +842,7 @@ declare namespace Outposts {
|
|
842
842
|
*/
|
843
843
|
OrderId?: OrderId;
|
844
844
|
/**
|
845
|
-
*
|
845
|
+
* The type of order.
|
846
846
|
*/
|
847
847
|
OrderType?: OrderType;
|
848
848
|
/**
|