aws-sdk 2.288.0 → 2.292.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/.changes/2.289.0.json +12 -0
- package/.changes/2.290.0.json +17 -0
- package/.changes/2.291.0.json +7 -0
- package/.changes/2.292.0.json +7 -0
- package/CHANGELOG.md +16 -1
- package/README.md +1 -1
- package/apis/dax-2017-04-19.min.json +47 -31
- package/apis/ecs-2014-11-13.min.json +53 -32
- package/apis/mediaconvert-2017-08-29.min.json +126 -75
- package/apis/rds-2013-01-10.examples.json +2 -2
- package/apis/rds-2013-02-12.examples.json +2 -2
- package/apis/rds-2013-09-09.examples.json +2 -2
- package/apis/rds-2014-09-01.examples.json +2 -2
- package/apis/rds-2014-09-01.paginators.json +1 -1
- package/apis/rds-2014-10-31.min.json +215 -117
- package/apis/sagemaker-2017-07-24.min.json +1 -1
- package/apis/secretsmanager-2017-10-17.min.json +16 -13
- package/apis/ssm-2014-11-06.min.json +141 -121
- package/clients/dax.d.ts +23 -1
- package/clients/ecs.d.ts +38 -10
- package/clients/mediaconvert.d.ts +66 -12
- package/clients/rds.d.ts +142 -18
- package/clients/sagemaker.d.ts +4 -4
- package/clients/secretsmanager.d.ts +15 -11
- package/clients/ssm.d.ts +21 -4
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +8 -8
- package/dist/aws-sdk.js +430 -292
- package/dist/aws-sdk.min.js +38 -37
- package/lib/core.js +1 -1
- package/package.json +4 -3
- package/scripts/composite-test.js +36 -0
- package/scripts/lib/test-helper.js +85 -0
- package/scripts/lib/test-helper.spec.js +51 -0
package/clients/dax.d.ts
CHANGED
|
@@ -248,6 +248,10 @@ declare namespace DAX {
|
|
|
248
248
|
* The parameter group being used by nodes in the cluster.
|
|
249
249
|
*/
|
|
250
250
|
ParameterGroup?: ParameterGroupStatus;
|
|
251
|
+
/**
|
|
252
|
+
* The description of the server-side encryption status on the specified DAX cluster.
|
|
253
|
+
*/
|
|
254
|
+
SSEDescription?: SSEDescription;
|
|
251
255
|
}
|
|
252
256
|
export type ClusterList = Cluster[];
|
|
253
257
|
export type ClusterNameList = String[];
|
|
@@ -291,7 +295,7 @@ declare namespace DAX {
|
|
|
291
295
|
/**
|
|
292
296
|
* A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX will assume this role and use the role's permissions to access DynamoDB on your behalf.
|
|
293
297
|
*/
|
|
294
|
-
IamRoleArn
|
|
298
|
+
IamRoleArn?: String;
|
|
295
299
|
/**
|
|
296
300
|
* The parameter group to be associated with the DAX cluster.
|
|
297
301
|
*/
|
|
@@ -300,6 +304,10 @@ declare namespace DAX {
|
|
|
300
304
|
* A set of tags to associate with the DAX cluster.
|
|
301
305
|
*/
|
|
302
306
|
Tags?: TagList;
|
|
307
|
+
/**
|
|
308
|
+
* Represents the settings used to enable server-side encryption on the cluster.
|
|
309
|
+
*/
|
|
310
|
+
SSESpecification?: SSESpecification;
|
|
303
311
|
}
|
|
304
312
|
export interface CreateClusterResponse {
|
|
305
313
|
/**
|
|
@@ -782,6 +790,20 @@ declare namespace DAX {
|
|
|
782
790
|
*/
|
|
783
791
|
Cluster?: Cluster;
|
|
784
792
|
}
|
|
793
|
+
export interface SSEDescription {
|
|
794
|
+
/**
|
|
795
|
+
* The current state of server-side encryption: ENABLING - Server-side encryption is being enabled. ENABLED - Server-side encryption is enabled. DISABLING - Server-side encryption is being disabled. DISABLED - Server-side encryption is disabled.
|
|
796
|
+
*/
|
|
797
|
+
Status?: SSEStatus;
|
|
798
|
+
}
|
|
799
|
+
export type SSEEnabled = boolean;
|
|
800
|
+
export interface SSESpecification {
|
|
801
|
+
/**
|
|
802
|
+
* Indicates whether server-side encryption is enabled (true) or disabled (false) on the cluster.
|
|
803
|
+
*/
|
|
804
|
+
Enabled: SSEEnabled;
|
|
805
|
+
}
|
|
806
|
+
export type SSEStatus = "ENABLING"|"ENABLED"|"DISABLING"|"DISABLED"|string;
|
|
785
807
|
export type SecurityGroupIdentifierList = String[];
|
|
786
808
|
export interface SecurityGroupMembership {
|
|
787
809
|
/**
|
package/clients/ecs.d.ts
CHANGED
|
@@ -45,11 +45,11 @@ declare class ECS extends Service {
|
|
|
45
45
|
*/
|
|
46
46
|
deleteCluster(callback?: (err: AWSError, data: ECS.Types.DeleteClusterResponse) => void): Request<ECS.Types.DeleteClusterResponse, AWSError>;
|
|
47
47
|
/**
|
|
48
|
-
* Deletes a specified service within a cluster. You can delete a service if you have no running tasks in it and the desired task count is zero. If the service is actively maintaining tasks, you cannot delete it, and you must update the service to a desired task count of zero. For more information, see UpdateService. When you delete a service, if there are still running tasks that require cleanup, the service status moves from ACTIVE to DRAINING, and the service is no longer visible in the console or in ListServices API operations. After the tasks have stopped, then the service status moves from DRAINING to INACTIVE. Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices API operations. However, in the future, INACTIVE services may be cleaned up and purged from Amazon ECS record keeping, and DescribeServices API operations on those services return a ServiceNotFoundException error.
|
|
48
|
+
* Deletes a specified service within a cluster. You can delete a service if you have no running tasks in it and the desired task count is zero. If the service is actively maintaining tasks, you cannot delete it, and you must update the service to a desired task count of zero. For more information, see UpdateService. When you delete a service, if there are still running tasks that require cleanup, the service status moves from ACTIVE to DRAINING, and the service is no longer visible in the console or in ListServices API operations. After the tasks have stopped, then the service status moves from DRAINING to INACTIVE. Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices API operations. However, in the future, INACTIVE services may be cleaned up and purged from Amazon ECS record keeping, and DescribeServices API operations on those services return a ServiceNotFoundException error. If you attempt to create a new service with the same name as an existing service in either ACTIVE or DRAINING status, you will receive an error.
|
|
49
49
|
*/
|
|
50
50
|
deleteService(params: ECS.Types.DeleteServiceRequest, callback?: (err: AWSError, data: ECS.Types.DeleteServiceResponse) => void): Request<ECS.Types.DeleteServiceResponse, AWSError>;
|
|
51
51
|
/**
|
|
52
|
-
* Deletes a specified service within a cluster. You can delete a service if you have no running tasks in it and the desired task count is zero. If the service is actively maintaining tasks, you cannot delete it, and you must update the service to a desired task count of zero. For more information, see UpdateService. When you delete a service, if there are still running tasks that require cleanup, the service status moves from ACTIVE to DRAINING, and the service is no longer visible in the console or in ListServices API operations. After the tasks have stopped, then the service status moves from DRAINING to INACTIVE. Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices API operations. However, in the future, INACTIVE services may be cleaned up and purged from Amazon ECS record keeping, and DescribeServices API operations on those services return a ServiceNotFoundException error.
|
|
52
|
+
* Deletes a specified service within a cluster. You can delete a service if you have no running tasks in it and the desired task count is zero. If the service is actively maintaining tasks, you cannot delete it, and you must update the service to a desired task count of zero. For more information, see UpdateService. When you delete a service, if there are still running tasks that require cleanup, the service status moves from ACTIVE to DRAINING, and the service is no longer visible in the console or in ListServices API operations. After the tasks have stopped, then the service status moves from DRAINING to INACTIVE. Services in the DRAINING or INACTIVE status can still be viewed with DescribeServices API operations. However, in the future, INACTIVE services may be cleaned up and purged from Amazon ECS record keeping, and DescribeServices API operations on those services return a ServiceNotFoundException error. If you attempt to create a new service with the same name as an existing service in either ACTIVE or DRAINING status, you will receive an error.
|
|
53
53
|
*/
|
|
54
54
|
deleteService(callback?: (err: AWSError, data: ECS.Types.DeleteServiceResponse) => void): Request<ECS.Types.DeleteServiceResponse, AWSError>;
|
|
55
55
|
/**
|
|
@@ -356,7 +356,7 @@ declare namespace ECS {
|
|
|
356
356
|
*/
|
|
357
357
|
securityGroups?: StringList;
|
|
358
358
|
/**
|
|
359
|
-
* Whether the task's elastic network interface receives a public IP address.
|
|
359
|
+
* Whether the task's elastic network interface receives a public IP address. The default value is DISABLED.
|
|
360
360
|
*/
|
|
361
361
|
assignPublicIp?: AssignPublicIp;
|
|
362
362
|
}
|
|
@@ -377,7 +377,7 @@ declare namespace ECS {
|
|
|
377
377
|
*/
|
|
378
378
|
status?: String;
|
|
379
379
|
/**
|
|
380
|
-
* The number of container instances registered into the cluster.
|
|
380
|
+
* The number of container instances registered into the cluster. This includes container instances in both ACTIVE and DRAINING status.
|
|
381
381
|
*/
|
|
382
382
|
registeredContainerInstancesCount?: Integer;
|
|
383
383
|
/**
|
|
@@ -1023,6 +1023,28 @@ declare namespace ECS {
|
|
|
1023
1023
|
telemetryEndpoint?: String;
|
|
1024
1024
|
}
|
|
1025
1025
|
export type DockerLabelsMap = {[key: string]: String};
|
|
1026
|
+
export interface DockerVolumeConfiguration {
|
|
1027
|
+
/**
|
|
1028
|
+
* The scope for the Docker volume which determines it's lifecycle. Docker volumes that are scoped to a task are automatically provisioned when the task starts and destroyed when the task stops. Docker volumes that are scoped as shared persist after the task stops.
|
|
1029
|
+
*/
|
|
1030
|
+
scope?: Scope;
|
|
1031
|
+
/**
|
|
1032
|
+
* If this value is true, the Docker volume is created if it does not already exist. This field is only used if the scope is shared.
|
|
1033
|
+
*/
|
|
1034
|
+
autoprovision?: BoxedBoolean;
|
|
1035
|
+
/**
|
|
1036
|
+
* The Docker volume driver to use. The driver value must match the driver name provided by Docker because it is used for task placement. If the driver was installed using the Docker plugin CLI, use docker plugin ls to retrieve the driver name from your container instance. If the driver was installed using another method, use Docker plugin discovery to retrieve the driver name. For more information, see Docker plugin discovery. This parameter maps to Driver in the Create a volume section of the Docker Remote API and the xxdriver option to docker volume create .
|
|
1037
|
+
*/
|
|
1038
|
+
driver?: String;
|
|
1039
|
+
/**
|
|
1040
|
+
* A map of Docker driver specific options passed through. This parameter maps to DriverOpts in the Create a volume section of the Docker Remote API and the xxopt option to docker volume create .
|
|
1041
|
+
*/
|
|
1042
|
+
driverOpts?: StringMap;
|
|
1043
|
+
/**
|
|
1044
|
+
* Custom metadata to add to your Docker volume. This parameter maps to Labels in the Create a volume section of the Docker Remote API and the xxlabel option to docker volume create .
|
|
1045
|
+
*/
|
|
1046
|
+
labels?: StringMap;
|
|
1047
|
+
}
|
|
1026
1048
|
export type Double = number;
|
|
1027
1049
|
export type EnvironmentVariables = KeyValuePair[];
|
|
1028
1050
|
export interface Failure {
|
|
@@ -1072,7 +1094,7 @@ declare namespace ECS {
|
|
|
1072
1094
|
export type HostEntryList = HostEntry[];
|
|
1073
1095
|
export interface HostVolumeProperties {
|
|
1074
1096
|
/**
|
|
1075
|
-
*
|
|
1097
|
+
* When the host parameter is used, specify a sourcePath to declare the path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If the host parameter contains a sourcePath file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the sourcePath value does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported. If you are using the Fargate launch type, the sourcePath parameter is not supported.
|
|
1076
1098
|
*/
|
|
1077
1099
|
sourcePath?: String;
|
|
1078
1100
|
}
|
|
@@ -1382,7 +1404,7 @@ declare namespace ECS {
|
|
|
1382
1404
|
export type Long = number;
|
|
1383
1405
|
export interface MountPoint {
|
|
1384
1406
|
/**
|
|
1385
|
-
* The name of the volume to mount.
|
|
1407
|
+
* The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.
|
|
1386
1408
|
*/
|
|
1387
1409
|
sourceVolume?: String;
|
|
1388
1410
|
/**
|
|
@@ -1666,6 +1688,7 @@ declare namespace ECS {
|
|
|
1666
1688
|
failures?: Failures;
|
|
1667
1689
|
}
|
|
1668
1690
|
export type SchedulingStrategy = "REPLICA"|"DAEMON"|string;
|
|
1691
|
+
export type Scope = "task"|"shared"|string;
|
|
1669
1692
|
export interface Service {
|
|
1670
1693
|
/**
|
|
1671
1694
|
* The ARN that identifies the service. The ARN contains the arn:aws:ecs namespace, followed by the Region of the service, the AWS account ID of the service owner, the service namespace, and then the service name. For example, arn:aws:ecs:region:012345678910:service/my-service .
|
|
@@ -1855,6 +1878,7 @@ declare namespace ECS {
|
|
|
1855
1878
|
}
|
|
1856
1879
|
export type String = string;
|
|
1857
1880
|
export type StringList = String[];
|
|
1881
|
+
export type StringMap = {[key: string]: String};
|
|
1858
1882
|
export interface SubmitContainerStateChangeRequest {
|
|
1859
1883
|
/**
|
|
1860
1884
|
* The short name or full ARN of the cluster that hosts the container.
|
|
@@ -1958,11 +1982,11 @@ declare namespace ECS {
|
|
|
1958
1982
|
*/
|
|
1959
1983
|
overrides?: TaskOverride;
|
|
1960
1984
|
/**
|
|
1961
|
-
* The last known status of the task.
|
|
1985
|
+
* The last known status of the task. For more information, see Task Lifecycle.
|
|
1962
1986
|
*/
|
|
1963
1987
|
lastStatus?: String;
|
|
1964
1988
|
/**
|
|
1965
|
-
* The desired status of the task.
|
|
1989
|
+
* The desired status of the task. For more information, see Task Lifecycle.
|
|
1966
1990
|
*/
|
|
1967
1991
|
desiredStatus?: String;
|
|
1968
1992
|
/**
|
|
@@ -2148,7 +2172,7 @@ declare namespace ECS {
|
|
|
2148
2172
|
*/
|
|
2149
2173
|
size: Integer;
|
|
2150
2174
|
/**
|
|
2151
|
-
* The list of tmpfs volume mount options. Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime"
|
|
2175
|
+
* The list of tmpfs volume mount options. Valid values: "defaults" | "ro" | "rw" | "suid" | "nosuid" | "dev" | "nodev" | "exec" | "noexec" | "sync" | "async" | "dirsync" | "remount" | "mand" | "nomand" | "atime" | "noatime" | "diratime" | "nodiratime" | "bind" | "rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime" | "norelatime" | "strictatime" | "nostrictatime" | "mode" | "uid" | "gid" | "nr_inodes" | "nr_blocks" | "mpol"
|
|
2152
2176
|
*/
|
|
2153
2177
|
mountOptions?: StringList;
|
|
2154
2178
|
}
|
|
@@ -2274,9 +2298,13 @@ declare namespace ECS {
|
|
|
2274
2298
|
*/
|
|
2275
2299
|
name?: String;
|
|
2276
2300
|
/**
|
|
2277
|
-
* The contents of the host parameter determine whether your
|
|
2301
|
+
* This parameter is specified when using bind mount host volumes. Bind mount host volumes are supported when using either the EC2 or Fargate launch types. The contents of the host parameter determine whether your bind mount host volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running. Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers cannot mount directories on a different drive, and mount point cannot be across drives. For example, you can mount C:\my\path:C:\my\path and D:\:D:\, but not D:\my\path:C:\my\path or D:\:C:\my\path.
|
|
2278
2302
|
*/
|
|
2279
2303
|
host?: HostVolumeProperties;
|
|
2304
|
+
/**
|
|
2305
|
+
* The configuration for the Docker volume. This parameter is specified when using Docker volumes.
|
|
2306
|
+
*/
|
|
2307
|
+
dockerVolumeConfiguration?: DockerVolumeConfiguration;
|
|
2280
2308
|
}
|
|
2281
2309
|
export interface VolumeFrom {
|
|
2282
2310
|
/**
|
|
@@ -548,6 +548,10 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
548
548
|
* Minimum time of initially buffered media that is needed to ensure smooth playout.
|
|
549
549
|
*/
|
|
550
550
|
MinBufferTime?: __integerMin0Max2147483647;
|
|
551
|
+
/**
|
|
552
|
+
* Keep this setting at the default value of 0, unless you are troubleshooting a problem with how devices play back the end of your video asset. If you know that player devices are hanging on the final segment of your video because the length of your final segment is too short, use this setting to specify a minimum final segment length, in seconds. Choose a value that is greater than or equal to 1 and less than your segment length. When you specify a value for this setting, the encoder will combine any final segment that is shorter than the length that you specify with the previous segment. For example, your segment length is 3 seconds and your final segment is .5 seconds without a minimum final segment length; when you set the minimum final segment length to 1, your final segment is 3.5 seconds.
|
|
553
|
+
*/
|
|
554
|
+
MinFinalSegmentLength?: __doubleMin0Max2147483647;
|
|
551
555
|
SegmentControl?: CmafSegmentControl;
|
|
552
556
|
/**
|
|
553
557
|
* Use this setting to specify the length, in seconds, of each individual CMAF segment. This value applies to the whole package; that is, to every output in the output group. Note that segments end on the first keyframe after this number of seconds, so the actual segment length might be slightly longer. If you set Segment control (CmafSegmentControl) to single file, the service puts the content of each output in a single file that has metadata that marks these segments. If you set it to segmented files, the service creates multiple files for each output, each with the content of one segment.
|
|
@@ -1031,6 +1035,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1031
1035
|
export type H264AdaptiveQuantization = "OFF"|"LOW"|"MEDIUM"|"HIGH"|"HIGHER"|"MAX"|string;
|
|
1032
1036
|
export type H264CodecLevel = "AUTO"|"LEVEL_1"|"LEVEL_1_1"|"LEVEL_1_2"|"LEVEL_1_3"|"LEVEL_2"|"LEVEL_2_1"|"LEVEL_2_2"|"LEVEL_3"|"LEVEL_3_1"|"LEVEL_3_2"|"LEVEL_4"|"LEVEL_4_1"|"LEVEL_4_2"|"LEVEL_5"|"LEVEL_5_1"|"LEVEL_5_2"|string;
|
|
1033
1037
|
export type H264CodecProfile = "BASELINE"|"HIGH"|"HIGH_10BIT"|"HIGH_422"|"HIGH_422_10BIT"|"MAIN"|string;
|
|
1038
|
+
export type H264DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
|
1034
1039
|
export type H264EntropyEncoding = "CABAC"|"CAVLC"|string;
|
|
1035
1040
|
export type H264FieldEncoding = "PAFF"|"FORCE_FIELD"|string;
|
|
1036
1041
|
export type H264FlickerAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
|
@@ -1041,7 +1046,17 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1041
1046
|
export type H264InterlaceMode = "PROGRESSIVE"|"TOP_FIELD"|"BOTTOM_FIELD"|"FOLLOW_TOP_FIELD"|"FOLLOW_BOTTOM_FIELD"|string;
|
|
1042
1047
|
export type H264ParControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
1043
1048
|
export type H264QualityTuningLevel = "SINGLE_PASS"|"SINGLE_PASS_HQ"|"MULTI_PASS_HQ"|string;
|
|
1044
|
-
export
|
|
1049
|
+
export interface H264QvbrSettings {
|
|
1050
|
+
/**
|
|
1051
|
+
* Use this setting only when Rate control mode is QVBR and Quality tuning level is Multi-pass HQ. For Max average bitrate values suited to the complexity of your input video, the service limits the average bitrate of the video part of this output to the value you choose. That is, the total size of the video element is less than or equal to the value you set multiplied by the number of seconds of encoded output.
|
|
1052
|
+
*/
|
|
1053
|
+
MaxAverageBitrate?: __integerMin1000Max1152000000;
|
|
1054
|
+
/**
|
|
1055
|
+
* Required when you use QVBR rate control mode. That is, when you specify qvbrSettings within h264Settings. Specify the target quality level for this output, from 1 to 10. Use higher numbers for greater quality. Level 10 results in nearly lossless compression. The quality level for most broadcast-quality transcodes is between 6 and 9.
|
|
1056
|
+
*/
|
|
1057
|
+
QvbrQualityLevel: __integerMin1Max10;
|
|
1058
|
+
}
|
|
1059
|
+
export type H264RateControlMode = "VBR"|"CBR"|"QVBR"|string;
|
|
1045
1060
|
export type H264RepeatPps = "DISABLED"|"ENABLED"|string;
|
|
1046
1061
|
export type H264SceneChangeDetect = "DISABLED"|"ENABLED"|string;
|
|
1047
1062
|
export interface H264Settings {
|
|
@@ -1052,6 +1067,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1052
1067
|
Bitrate?: __integerMin1000Max1152000000;
|
|
1053
1068
|
CodecLevel?: H264CodecLevel;
|
|
1054
1069
|
CodecProfile?: H264CodecProfile;
|
|
1070
|
+
/**
|
|
1071
|
+
* Choose Adaptive to improve subjective video quality for high-motion content. This will cause the service to use fewer B-frames (which infer information based on other frames) for high-motion portions of the video and more B-frames for low-motion portions. The maximum number of B-frames is limited by the value you provide for the setting B frames between reference frames (numberBFramesBetweenReferenceFrames).
|
|
1072
|
+
*/
|
|
1073
|
+
DynamicSubGop?: H264DynamicSubGop;
|
|
1055
1074
|
EntropyEncoding?: H264EntropyEncoding;
|
|
1056
1075
|
FieldEncoding?: H264FieldEncoding;
|
|
1057
1076
|
FlickerAdaptiveQuantization?: H264FlickerAdaptiveQuantization;
|
|
@@ -1085,7 +1104,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1085
1104
|
HrdBufferSize?: __integerMin0Max1152000000;
|
|
1086
1105
|
InterlaceMode?: H264InterlaceMode;
|
|
1087
1106
|
/**
|
|
1088
|
-
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000.
|
|
1107
|
+
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
1089
1108
|
*/
|
|
1090
1109
|
MaxBitrate?: __integerMin1000Max1152000000;
|
|
1091
1110
|
/**
|
|
@@ -1110,6 +1129,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1110
1129
|
*/
|
|
1111
1130
|
ParNumerator?: __integerMin1Max2147483647;
|
|
1112
1131
|
QualityTuningLevel?: H264QualityTuningLevel;
|
|
1132
|
+
/**
|
|
1133
|
+
* Settings for quality-defined variable bitrate encoding with the H.264 codec. Required when you set Rate control mode to QVBR. Not valid when you set Rate control mode to a value other than QVBR, or when you don't define Rate control mode.
|
|
1134
|
+
*/
|
|
1135
|
+
QvbrSettings?: H264QvbrSettings;
|
|
1113
1136
|
RateControlMode?: H264RateControlMode;
|
|
1114
1137
|
RepeatPps?: H264RepeatPps;
|
|
1115
1138
|
SceneChangeDetect?: H264SceneChangeDetect;
|
|
@@ -1138,6 +1161,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1138
1161
|
export type H265AlternateTransferFunctionSei = "DISABLED"|"ENABLED"|string;
|
|
1139
1162
|
export type H265CodecLevel = "AUTO"|"LEVEL_1"|"LEVEL_2"|"LEVEL_2_1"|"LEVEL_3"|"LEVEL_3_1"|"LEVEL_4"|"LEVEL_4_1"|"LEVEL_5"|"LEVEL_5_1"|"LEVEL_5_2"|"LEVEL_6"|"LEVEL_6_1"|"LEVEL_6_2"|string;
|
|
1140
1163
|
export type H265CodecProfile = "MAIN_MAIN"|"MAIN_HIGH"|"MAIN10_MAIN"|"MAIN10_HIGH"|"MAIN_422_8BIT_MAIN"|"MAIN_422_8BIT_HIGH"|"MAIN_422_10BIT_MAIN"|"MAIN_422_10BIT_HIGH"|string;
|
|
1164
|
+
export type H265DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
|
1141
1165
|
export type H265FlickerAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
|
1142
1166
|
export type H265FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
1143
1167
|
export type H265FramerateConversionAlgorithm = "DUPLICATE_DROP"|"INTERPOLATE"|string;
|
|
@@ -1146,7 +1170,17 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1146
1170
|
export type H265InterlaceMode = "PROGRESSIVE"|"TOP_FIELD"|"BOTTOM_FIELD"|"FOLLOW_TOP_FIELD"|"FOLLOW_BOTTOM_FIELD"|string;
|
|
1147
1171
|
export type H265ParControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
1148
1172
|
export type H265QualityTuningLevel = "SINGLE_PASS"|"SINGLE_PASS_HQ"|"MULTI_PASS_HQ"|string;
|
|
1149
|
-
export
|
|
1173
|
+
export interface H265QvbrSettings {
|
|
1174
|
+
/**
|
|
1175
|
+
* Use this setting only when Rate control mode is QVBR and Quality tuning level is Multi-pass HQ. For Max average bitrate values suited to the complexity of your input video, the service limits the average bitrate of the video part of this output to the value you choose. That is, the total size of the video element is less than or equal to the value you set multiplied by the number of seconds of encoded output.
|
|
1176
|
+
*/
|
|
1177
|
+
MaxAverageBitrate?: __integerMin1000Max1466400000;
|
|
1178
|
+
/**
|
|
1179
|
+
* Required when you use QVBR rate control mode. That is, when you specify qvbrSettings within h265Settings. Specify the target quality level for this output, from 1 to 10. Use higher numbers for greater quality. Level 10 results in nearly lossless compression. The quality level for most broadcast-quality transcodes is between 6 and 9.
|
|
1180
|
+
*/
|
|
1181
|
+
QvbrQualityLevel: __integerMin1Max10;
|
|
1182
|
+
}
|
|
1183
|
+
export type H265RateControlMode = "VBR"|"CBR"|"QVBR"|string;
|
|
1150
1184
|
export type H265SampleAdaptiveOffsetFilterMode = "DEFAULT"|"ADAPTIVE"|"OFF"|string;
|
|
1151
1185
|
export type H265SceneChangeDetect = "DISABLED"|"ENABLED"|string;
|
|
1152
1186
|
export interface H265Settings {
|
|
@@ -1158,6 +1192,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1158
1192
|
Bitrate?: __integerMin1000Max1466400000;
|
|
1159
1193
|
CodecLevel?: H265CodecLevel;
|
|
1160
1194
|
CodecProfile?: H265CodecProfile;
|
|
1195
|
+
/**
|
|
1196
|
+
* Choose Adaptive to improve subjective video quality for high-motion content. This will cause the service to use fewer B-frames (which infer information based on other frames) for high-motion portions of the video and more B-frames for low-motion portions. The maximum number of B-frames is limited by the value you provide for the setting B frames between reference frames (numberBFramesBetweenReferenceFrames).
|
|
1197
|
+
*/
|
|
1198
|
+
DynamicSubGop?: H265DynamicSubGop;
|
|
1161
1199
|
FlickerAdaptiveQuantization?: H265FlickerAdaptiveQuantization;
|
|
1162
1200
|
FramerateControl?: H265FramerateControl;
|
|
1163
1201
|
FramerateConversionAlgorithm?: H265FramerateConversionAlgorithm;
|
|
@@ -1189,7 +1227,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1189
1227
|
HrdBufferSize?: __integerMin0Max1466400000;
|
|
1190
1228
|
InterlaceMode?: H265InterlaceMode;
|
|
1191
1229
|
/**
|
|
1192
|
-
* Maximum bitrate in bits/second.
|
|
1230
|
+
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
1193
1231
|
*/
|
|
1194
1232
|
MaxBitrate?: __integerMin1000Max1466400000;
|
|
1195
1233
|
/**
|
|
@@ -1214,6 +1252,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1214
1252
|
*/
|
|
1215
1253
|
ParNumerator?: __integerMin1Max2147483647;
|
|
1216
1254
|
QualityTuningLevel?: H265QualityTuningLevel;
|
|
1255
|
+
/**
|
|
1256
|
+
* Settings for quality-defined variable bitrate encoding with the H.265 codec. Required when you set Rate control mode to QVBR. Not valid when you set Rate control mode to a value other than QVBR, or when you don't define Rate control mode.
|
|
1257
|
+
*/
|
|
1258
|
+
QvbrSettings?: H265QvbrSettings;
|
|
1217
1259
|
RateControlMode?: H265RateControlMode;
|
|
1218
1260
|
SampleAdaptiveOffsetFilterMode?: H265SampleAdaptiveOffsetFilterMode;
|
|
1219
1261
|
SceneChangeDetect?: H265SceneChangeDetect;
|
|
@@ -1348,6 +1390,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1348
1390
|
Encryption?: HlsEncryptionSettings;
|
|
1349
1391
|
ManifestCompression?: HlsManifestCompression;
|
|
1350
1392
|
ManifestDurationFormat?: HlsManifestDurationFormat;
|
|
1393
|
+
/**
|
|
1394
|
+
* Keep this setting at the default value of 0, unless you are troubleshooting a problem with how devices play back the end of your video asset. If you know that player devices are hanging on the final segment of your video because the length of your final segment is too short, use this setting to specify a minimum final segment length, in seconds. Choose a value that is greater than or equal to 1 and less than your segment length. When you specify a value for this setting, the encoder will combine any final segment that is shorter than the length that you specify with the previous segment. For example, your segment length is 3 seconds and your final segment is .5 seconds without a minimum final segment length; when you set the minimum final segment length to 1, your final segment is 3.5 seconds.
|
|
1395
|
+
*/
|
|
1396
|
+
MinFinalSegmentLength?: __doubleMin0Max2147483647;
|
|
1351
1397
|
/**
|
|
1352
1398
|
* When set, Minimum Segment Size is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.
|
|
1353
1399
|
*/
|
|
@@ -1994,6 +2040,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
1994
2040
|
export type Mpeg2AdaptiveQuantization = "OFF"|"LOW"|"MEDIUM"|"HIGH"|string;
|
|
1995
2041
|
export type Mpeg2CodecLevel = "AUTO"|"LOW"|"MAIN"|"HIGH1440"|"HIGH"|string;
|
|
1996
2042
|
export type Mpeg2CodecProfile = "MAIN"|"PROFILE_422"|string;
|
|
2043
|
+
export type Mpeg2DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
|
1997
2044
|
export type Mpeg2FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
1998
2045
|
export type Mpeg2FramerateConversionAlgorithm = "DUPLICATE_DROP"|"INTERPOLATE"|string;
|
|
1999
2046
|
export type Mpeg2GopSizeUnits = "FRAMES"|"SECONDS"|string;
|
|
@@ -2011,6 +2058,10 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
2011
2058
|
Bitrate?: __integerMin1000Max288000000;
|
|
2012
2059
|
CodecLevel?: Mpeg2CodecLevel;
|
|
2013
2060
|
CodecProfile?: Mpeg2CodecProfile;
|
|
2061
|
+
/**
|
|
2062
|
+
* Choose Adaptive to improve subjective video quality for high-motion content. This will cause the service to use fewer B-frames (which infer information based on other frames) for high-motion portions of the video and more B-frames for low-motion portions. The maximum number of B-frames is limited by the value you provide for the setting B frames between reference frames (numberBFramesBetweenReferenceFrames).
|
|
2063
|
+
*/
|
|
2064
|
+
DynamicSubGop?: Mpeg2DynamicSubGop;
|
|
2014
2065
|
FramerateControl?: Mpeg2FramerateControl;
|
|
2015
2066
|
FramerateConversionAlgorithm?: Mpeg2FramerateConversionAlgorithm;
|
|
2016
2067
|
/**
|
|
@@ -2327,21 +2378,21 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
2327
2378
|
export type QueueStatus = "ACTIVE"|"PAUSED"|string;
|
|
2328
2379
|
export interface Rectangle {
|
|
2329
2380
|
/**
|
|
2330
|
-
* Height of rectangle in pixels.
|
|
2381
|
+
* Height of rectangle in pixels. Specify only even numbers.
|
|
2331
2382
|
*/
|
|
2332
|
-
Height:
|
|
2383
|
+
Height: __integerMin2Max2147483647;
|
|
2333
2384
|
/**
|
|
2334
|
-
* Width of rectangle in pixels.
|
|
2385
|
+
* Width of rectangle in pixels. Specify only even numbers.
|
|
2335
2386
|
*/
|
|
2336
|
-
Width:
|
|
2387
|
+
Width: __integerMin2Max2147483647;
|
|
2337
2388
|
/**
|
|
2338
|
-
* The distance, in pixels, between the rectangle and the left edge of the video frame.
|
|
2389
|
+
* The distance, in pixels, between the rectangle and the left edge of the video frame. Specify only even numbers.
|
|
2339
2390
|
*/
|
|
2340
|
-
X:
|
|
2391
|
+
X: __integerMin0Max2147483647;
|
|
2341
2392
|
/**
|
|
2342
|
-
* The distance, in pixels, between the rectangle and the top edge of the video frame.
|
|
2393
|
+
* The distance, in pixels, between the rectangle and the top edge of the video frame. Specify only even numbers.
|
|
2343
2394
|
*/
|
|
2344
|
-
Y:
|
|
2395
|
+
Y: __integerMin0Max2147483647;
|
|
2345
2396
|
}
|
|
2346
2397
|
export interface RemixSettings {
|
|
2347
2398
|
ChannelMapping: ChannelMapping;
|
|
@@ -2656,6 +2707,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
2656
2707
|
SampleRate?: __integerMin8000Max192000;
|
|
2657
2708
|
}
|
|
2658
2709
|
export type __doubleMin0 = number;
|
|
2710
|
+
export type __doubleMin0Max2147483647 = number;
|
|
2659
2711
|
export type __doubleMinNegative59Max0 = number;
|
|
2660
2712
|
export type __doubleMinNegative60Max3 = number;
|
|
2661
2713
|
export type __doubleMinNegative60MaxNegative1 = number;
|
|
@@ -2691,6 +2743,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
2691
2743
|
export type __integerMin10Max48 = number;
|
|
2692
2744
|
export type __integerMin16Max24 = number;
|
|
2693
2745
|
export type __integerMin1Max1 = number;
|
|
2746
|
+
export type __integerMin1Max10 = number;
|
|
2694
2747
|
export type __integerMin1Max100 = number;
|
|
2695
2748
|
export type __integerMin1Max10000000 = number;
|
|
2696
2749
|
export type __integerMin1Max1001 = number;
|
|
@@ -2706,6 +2759,7 @@ Valid values: -1.5 -3.0 -4.5 -6.0 -60
|
|
|
2706
2759
|
export type __integerMin24Max60000 = number;
|
|
2707
2760
|
export type __integerMin25Max10000 = number;
|
|
2708
2761
|
export type __integerMin25Max2000 = number;
|
|
2762
|
+
export type __integerMin2Max2147483647 = number;
|
|
2709
2763
|
export type __integerMin32000Max384000 = number;
|
|
2710
2764
|
export type __integerMin32000Max48000 = number;
|
|
2711
2765
|
export type __integerMin32Max2160 = number;
|