aws-sdk 2.1412.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 +8 -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/glue-2017-03-31.min.json +146 -131
- 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/clients/cloudwatchlogs.d.ts +32 -18
- package/clients/dms.d.ts +632 -7
- package/clients/glue.d.ts +21 -0
- package/clients/medialive.d.ts +101 -0
- package/clients/mediatailor.d.ts +21 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +35 -36
- package/dist/aws-sdk.min.js +3 -3
- package/lib/core.js +1 -1
- package/package.json +1 -1
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/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
|
*/
|