aws-sdk 2.801.0 → 2.805.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 +25 -1
- package/README.md +1 -1
- package/apis/amplifybackend-2020-08-11.min.json +0 -8
- package/apis/batch-2016-08-10.min.json +81 -21
- package/apis/compute-optimizer-2019-11-01.min.json +110 -0
- package/apis/{profile-2020-08-15.examples.json → customer-profiles-2020-08-15.examples.json} +0 -0
- package/apis/{profile-2020-08-15.min.json → customer-profiles-2020-08-15.min.json} +3 -3
- package/apis/{profile-2020-08-15.paginators.json → customer-profiles-2020-08-15.paginators.json} +0 -0
- package/apis/dms-2016-01-01.min.json +9 -1
- package/apis/ec2-2016-11-15.min.json +4 -0
- package/apis/lambda-2015-03-31.examples.json +6 -6
- package/apis/license-manager-2018-08-01.min.json +957 -51
- package/apis/medialive-2017-10-14.min.json +240 -158
- package/apis/metadata.json +4 -3
- package/apis/rds-2014-10-31.min.json +200 -132
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +80 -0
- package/apis/ssm-2014-11-06.min.json +348 -203
- package/clients/all.d.ts +1 -1
- package/clients/all.js +2 -2
- package/clients/amplifybackend.d.ts +74 -74
- package/clients/batch.d.ts +200 -133
- package/clients/computeoptimizer.d.ts +179 -22
- package/clients/{profile.d.ts → customerprofiles.d.ts} +63 -63
- package/clients/customerprofiles.js +18 -0
- package/clients/directoryservice.d.ts +24 -21
- package/clients/dms.d.ts +16 -0
- package/clients/ec2.d.ts +6 -2
- package/clients/kafka.d.ts +4 -4
- package/clients/lambda.d.ts +10 -10
- package/clients/licensemanager.d.ts +1350 -72
- package/clients/medialive.d.ts +80 -1
- package/clients/rds.d.ts +128 -43
- package/clients/servicecatalogappregistry.d.ts +61 -0
- package/clients/ssm.d.ts +197 -10
- package/clients/workspaces.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +31 -27
- package/dist/aws-sdk.js +565 -343
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config_service_placeholders.d.ts +2 -2
- package/lib/core.js +1 -1
- package/lib/services/s3.js +6 -2
- package/package.json +1 -1
- package/clients/profile.js +0 -18
package/clients/medialive.d.ts
CHANGED
|
@@ -819,6 +819,16 @@ Alternate rendition that the client will not try to play back by default. Repres
|
|
|
819
819
|
AudioPidSelection?: AudioPidSelection;
|
|
820
820
|
AudioTrackSelection?: AudioTrackSelection;
|
|
821
821
|
}
|
|
822
|
+
export interface AudioSilenceFailoverSettings {
|
|
823
|
+
/**
|
|
824
|
+
* The name of the audio selector in the input that MediaLive should monitor to detect silence. Select your most important rendition. If you didn't create an audio selector in this input, leave blank.
|
|
825
|
+
*/
|
|
826
|
+
AudioSelectorName: __string;
|
|
827
|
+
/**
|
|
828
|
+
* The amount of time (in milliseconds) that the active input must be silent before automatic input failover occurs. Silence is defined as audio loss or audio quieter than -50 dBFS.
|
|
829
|
+
*/
|
|
830
|
+
AudioSilenceThresholdMsec?: __integerMin1000;
|
|
831
|
+
}
|
|
822
832
|
export interface AudioTrack {
|
|
823
833
|
/**
|
|
824
834
|
* 1-based integer value that maps to a specific audio track
|
|
@@ -1893,6 +1903,10 @@ one destination per packager.
|
|
|
1893
1903
|
* The type of the input device.
|
|
1894
1904
|
*/
|
|
1895
1905
|
Type?: InputDeviceType;
|
|
1906
|
+
/**
|
|
1907
|
+
* Settings that describe an input device that is type UHD.
|
|
1908
|
+
*/
|
|
1909
|
+
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
1896
1910
|
}
|
|
1897
1911
|
export interface DescribeInputDeviceThumbnailRequest {
|
|
1898
1912
|
/**
|
|
@@ -2568,10 +2582,18 @@ You specify only the font family. All other style information (color, bold, posi
|
|
|
2568
2582
|
FailoverConditionSettings?: FailoverConditionSettings;
|
|
2569
2583
|
}
|
|
2570
2584
|
export interface FailoverConditionSettings {
|
|
2585
|
+
/**
|
|
2586
|
+
* MediaLive will perform a failover if the specified audio selector is silent for the specified period.
|
|
2587
|
+
*/
|
|
2588
|
+
AudioSilenceSettings?: AudioSilenceFailoverSettings;
|
|
2571
2589
|
/**
|
|
2572
2590
|
* MediaLive will perform a failover if content is not detected in this input for the specified period.
|
|
2573
2591
|
*/
|
|
2574
2592
|
InputLossSettings?: InputLossFailoverSettings;
|
|
2593
|
+
/**
|
|
2594
|
+
* MediaLive will perform a failover if content is considered black for the specified period.
|
|
2595
|
+
*/
|
|
2596
|
+
VideoBlackSettings?: VideoBlackFailoverSettings;
|
|
2575
2597
|
}
|
|
2576
2598
|
export interface FeatureActivations {
|
|
2577
2599
|
/**
|
|
@@ -3738,9 +3760,47 @@ to.
|
|
|
3738
3760
|
* The type of the input device.
|
|
3739
3761
|
*/
|
|
3740
3762
|
Type?: InputDeviceType;
|
|
3763
|
+
/**
|
|
3764
|
+
* Settings that describe an input device that is type UHD.
|
|
3765
|
+
*/
|
|
3766
|
+
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
3741
3767
|
}
|
|
3742
3768
|
export type InputDeviceTransferType = "OUTGOING"|"INCOMING"|string;
|
|
3743
3769
|
export type InputDeviceType = "HD"|string;
|
|
3770
|
+
export interface InputDeviceUhdSettings {
|
|
3771
|
+
/**
|
|
3772
|
+
* If you specified Auto as the configured input, specifies which of the sources is currently active (SDI or HDMI).
|
|
3773
|
+
*/
|
|
3774
|
+
ActiveInput?: InputDeviceActiveInput;
|
|
3775
|
+
/**
|
|
3776
|
+
* The source at the input device that is currently active. You can specify this source.
|
|
3777
|
+
*/
|
|
3778
|
+
ConfiguredInput?: InputDeviceConfiguredInput;
|
|
3779
|
+
/**
|
|
3780
|
+
* The state of the input device.
|
|
3781
|
+
*/
|
|
3782
|
+
DeviceState?: InputDeviceState;
|
|
3783
|
+
/**
|
|
3784
|
+
* The frame rate of the video source.
|
|
3785
|
+
*/
|
|
3786
|
+
Framerate?: __double;
|
|
3787
|
+
/**
|
|
3788
|
+
* The height of the video source, in pixels.
|
|
3789
|
+
*/
|
|
3790
|
+
Height?: __integer;
|
|
3791
|
+
/**
|
|
3792
|
+
* The current maximum bitrate for ingesting this source, in bits per second. You can specify this maximum.
|
|
3793
|
+
*/
|
|
3794
|
+
MaxBitrate?: __integer;
|
|
3795
|
+
/**
|
|
3796
|
+
* The scan type of the video source.
|
|
3797
|
+
*/
|
|
3798
|
+
ScanType?: InputDeviceScanType;
|
|
3799
|
+
/**
|
|
3800
|
+
* The width of the video source, in pixels.
|
|
3801
|
+
*/
|
|
3802
|
+
Width?: __integer;
|
|
3803
|
+
}
|
|
3744
3804
|
export type InputFilter = "AUTO"|"DISABLED"|"FORCED"|string;
|
|
3745
3805
|
export interface InputLocation {
|
|
3746
3806
|
/**
|
|
@@ -6107,7 +6167,7 @@ one destination per packager.
|
|
|
6107
6167
|
}
|
|
6108
6168
|
export interface UpdateInputDeviceRequest {
|
|
6109
6169
|
/**
|
|
6110
|
-
* The settings that you want to apply to the input device.
|
|
6170
|
+
* The settings that you want to apply to the HD input device.
|
|
6111
6171
|
*/
|
|
6112
6172
|
HdDeviceSettings?: InputDeviceConfigurableSettings;
|
|
6113
6173
|
/**
|
|
@@ -6118,6 +6178,10 @@ one destination per packager.
|
|
|
6118
6178
|
* The name that you assigned to this input device (not the unique ID).
|
|
6119
6179
|
*/
|
|
6120
6180
|
Name?: __string;
|
|
6181
|
+
/**
|
|
6182
|
+
* The settings that you want to apply to the UHD input device.
|
|
6183
|
+
*/
|
|
6184
|
+
UhdDeviceSettings?: InputDeviceConfigurableSettings;
|
|
6121
6185
|
}
|
|
6122
6186
|
export interface UpdateInputDeviceResponse {
|
|
6123
6187
|
/**
|
|
@@ -6164,6 +6228,10 @@ one destination per packager.
|
|
|
6164
6228
|
* The type of the input device.
|
|
6165
6229
|
*/
|
|
6166
6230
|
Type?: InputDeviceType;
|
|
6231
|
+
/**
|
|
6232
|
+
* Settings that describe an input device that is type UHD.
|
|
6233
|
+
*/
|
|
6234
|
+
UhdDeviceSettings?: InputDeviceUhdSettings;
|
|
6167
6235
|
}
|
|
6168
6236
|
export interface UpdateInputRequest {
|
|
6169
6237
|
/**
|
|
@@ -6278,6 +6346,16 @@ Only specify sources for PULL type Inputs. Leave Destinations empty.
|
|
|
6278
6346
|
export interface UpdateReservationResponse {
|
|
6279
6347
|
Reservation?: Reservation;
|
|
6280
6348
|
}
|
|
6349
|
+
export interface VideoBlackFailoverSettings {
|
|
6350
|
+
/**
|
|
6351
|
+
* A value used in calculating the threshold below which MediaLive considers a pixel to be 'black'. For the input to be considered black, every pixel in a frame must be below this threshold. The threshold is calculated as a percentage (expressed as a decimal) of white. Therefore .1 means 10% white (or 90% black). Note how the formula works for any color depth. For example, if you set this field to 0.1 in 10-bit color depth: (1023*0.1=102.3), which means a pixel value of 102 or less is 'black'. If you set this field to .1 in an 8-bit color depth: (255*0.1=25.5), which means a pixel value of 25 or less is 'black'. The range is 0.0 to 1.0, with any number of decimal places.
|
|
6352
|
+
*/
|
|
6353
|
+
BlackDetectThreshold?: __doubleMin0Max1;
|
|
6354
|
+
/**
|
|
6355
|
+
* The amount of time (in milliseconds) that the active input must be black before automatic input failover occurs.
|
|
6356
|
+
*/
|
|
6357
|
+
VideoBlackThresholdMsec?: __integerMin1000;
|
|
6358
|
+
}
|
|
6281
6359
|
export interface VideoCodecSettings {
|
|
6282
6360
|
FrameCaptureSettings?: FrameCaptureSettings;
|
|
6283
6361
|
H264Settings?: H264Settings;
|
|
@@ -6370,6 +6448,7 @@ NONE: MediaLive does not clip the input video and does not include the AFD value
|
|
|
6370
6448
|
}
|
|
6371
6449
|
export type __double = number;
|
|
6372
6450
|
export type __doubleMin0 = number;
|
|
6451
|
+
export type __doubleMin0Max1 = number;
|
|
6373
6452
|
export type __doubleMin1 = number;
|
|
6374
6453
|
export type __doubleMinNegative59Max0 = number;
|
|
6375
6454
|
export type __integer = number;
|