cdk-docker-image-deployment 0.0.176 → 0.0.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +9 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/devops-guru-2020-12-01.min.json +4 -2
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +40 -36
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.examples.json +5 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.min.json +590 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.paginators.json +16 -0
- package/node_modules/aws-sdk/apis/internetmonitor-2021-06-03.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/lambda-2015-03-31.min.json +134 -116
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +142 -127
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/timestream-write-2018-11-01.min.json +332 -26
- package/node_modules/aws-sdk/apis/timestream-write-2018-11-01.paginators.json +5 -0
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/devopsguru.d.ts +8 -0
- package/node_modules/aws-sdk/clients/drs.d.ts +18 -2
- package/node_modules/aws-sdk/clients/internetmonitor.d.ts +606 -0
- package/node_modules/aws-sdk/clients/internetmonitor.js +19 -0
- package/node_modules/aws-sdk/clients/lambda.d.ts +46 -13
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +30 -10
- package/node_modules/aws-sdk/clients/timestreamwrite.d.ts +435 -38
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +56 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +142 -119
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +42 -42
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +2 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -698,7 +698,7 @@ declare namespace Lambda {
|
|
|
698
698
|
*/
|
|
699
699
|
PrincipalOrgID?: PrincipalOrgID;
|
|
700
700
|
/**
|
|
701
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
701
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
702
702
|
*/
|
|
703
703
|
FunctionUrlAuthType?: FunctionUrlAuthType;
|
|
704
704
|
}
|
|
@@ -803,6 +803,7 @@ declare namespace Lambda {
|
|
|
803
803
|
UntrustedArtifactOnDeployment?: CodeSigningPolicy;
|
|
804
804
|
}
|
|
805
805
|
export type CodeSigningPolicy = "Warn"|"Enforce"|string;
|
|
806
|
+
export type CollectionName = string;
|
|
806
807
|
export type CompatibleArchitectures = Architecture[];
|
|
807
808
|
export type CompatibleRuntimes = Runtime[];
|
|
808
809
|
export interface Concurrency {
|
|
@@ -968,6 +969,10 @@ declare namespace Lambda {
|
|
|
968
969
|
* (Amazon SQS only) The scaling configuration for the event source. For more information, see Configuring maximum concurrency for Amazon SQS event sources.
|
|
969
970
|
*/
|
|
970
971
|
ScalingConfig?: ScalingConfig;
|
|
972
|
+
/**
|
|
973
|
+
* Specific configuration settings for a DocumentDB event source.
|
|
974
|
+
*/
|
|
975
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
971
976
|
}
|
|
972
977
|
export interface CreateFunctionRequest {
|
|
973
978
|
/**
|
|
@@ -975,7 +980,7 @@ declare namespace Lambda {
|
|
|
975
980
|
*/
|
|
976
981
|
FunctionName: FunctionName;
|
|
977
982
|
/**
|
|
978
|
-
* The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive.
|
|
983
|
+
* The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
|
|
979
984
|
*/
|
|
980
985
|
Runtime?: Runtime;
|
|
981
986
|
/**
|
|
@@ -1023,7 +1028,7 @@ declare namespace Lambda {
|
|
|
1023
1028
|
*/
|
|
1024
1029
|
Environment?: Environment;
|
|
1025
1030
|
/**
|
|
1026
|
-
* The ARN of the Key Management Service (KMS) key that's used to encrypt your function's environment variables.
|
|
1031
|
+
* The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's environment variables. When Lambda SnapStart is activated, this key is also used to encrypt your function's snapshot. If you don't provide a customer managed key, Lambda uses a default service key.
|
|
1027
1032
|
*/
|
|
1028
1033
|
KMSKeyArn?: KMSKeyArn;
|
|
1029
1034
|
/**
|
|
@@ -1073,7 +1078,7 @@ declare namespace Lambda {
|
|
|
1073
1078
|
*/
|
|
1074
1079
|
Qualifier?: FunctionUrlQualifier;
|
|
1075
1080
|
/**
|
|
1076
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
1081
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
1077
1082
|
*/
|
|
1078
1083
|
AuthType: FunctionUrlAuthType;
|
|
1079
1084
|
/**
|
|
@@ -1091,7 +1096,7 @@ declare namespace Lambda {
|
|
|
1091
1096
|
*/
|
|
1092
1097
|
FunctionArn: FunctionArn;
|
|
1093
1098
|
/**
|
|
1094
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
1099
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
1095
1100
|
*/
|
|
1096
1101
|
AuthType: FunctionUrlAuthType;
|
|
1097
1102
|
/**
|
|
@@ -1103,6 +1108,7 @@ declare namespace Lambda {
|
|
|
1103
1108
|
*/
|
|
1104
1109
|
CreationTime: Timestamp;
|
|
1105
1110
|
}
|
|
1111
|
+
export type DatabaseName = string;
|
|
1106
1112
|
export type _Date = Date;
|
|
1107
1113
|
export interface DeadLetterConfig {
|
|
1108
1114
|
/**
|
|
@@ -1208,6 +1214,20 @@ declare namespace Lambda {
|
|
|
1208
1214
|
*/
|
|
1209
1215
|
OnFailure?: OnFailure;
|
|
1210
1216
|
}
|
|
1217
|
+
export interface DocumentDBEventSourceConfig {
|
|
1218
|
+
/**
|
|
1219
|
+
* The name of the database to consume within the DocumentDB cluster.
|
|
1220
|
+
*/
|
|
1221
|
+
DatabaseName?: DatabaseName;
|
|
1222
|
+
/**
|
|
1223
|
+
* The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections.
|
|
1224
|
+
*/
|
|
1225
|
+
CollectionName?: CollectionName;
|
|
1226
|
+
/**
|
|
1227
|
+
* Determines what DocumentDB sends to your event stream during document update operations. If set to UpdateLookup, DocumentDB sends a delta describing the changes, along with a copy of the entire document. Otherwise, DocumentDB sends only a partial document that contains the changes.
|
|
1228
|
+
*/
|
|
1229
|
+
FullDocument?: FullDocument;
|
|
1230
|
+
}
|
|
1211
1231
|
export type Enabled = boolean;
|
|
1212
1232
|
export type EndPointType = "KAFKA_BOOTSTRAP_SERVERS"|string;
|
|
1213
1233
|
export type Endpoint = string;
|
|
@@ -1354,6 +1374,10 @@ declare namespace Lambda {
|
|
|
1354
1374
|
* (Amazon SQS only) The scaling configuration for the event source. For more information, see Configuring maximum concurrency for Amazon SQS event sources.
|
|
1355
1375
|
*/
|
|
1356
1376
|
ScalingConfig?: ScalingConfig;
|
|
1377
|
+
/**
|
|
1378
|
+
* Specific configuration settings for a DocumentDB event source.
|
|
1379
|
+
*/
|
|
1380
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
1357
1381
|
}
|
|
1358
1382
|
export type EventSourceMappingsList = EventSourceMappingConfiguration[];
|
|
1359
1383
|
export type EventSourcePosition = "TRIM_HORIZON"|"LATEST"|"AT_TIMESTAMP"|string;
|
|
@@ -1383,6 +1407,7 @@ declare namespace Lambda {
|
|
|
1383
1407
|
Filters?: FilterList;
|
|
1384
1408
|
}
|
|
1385
1409
|
export type FilterList = Filter[];
|
|
1410
|
+
export type FullDocument = "UpdateLookup"|"Default"|string;
|
|
1386
1411
|
export type FunctionArn = string;
|
|
1387
1412
|
export type FunctionArnList = FunctionArn[];
|
|
1388
1413
|
export interface FunctionCode {
|
|
@@ -1487,7 +1512,7 @@ declare namespace Lambda {
|
|
|
1487
1512
|
*/
|
|
1488
1513
|
Environment?: EnvironmentResponse;
|
|
1489
1514
|
/**
|
|
1490
|
-
* The KMS key that's used to encrypt the function's environment variables. This key is returned only if you've configured a customer managed key.
|
|
1515
|
+
* The KMS key that's used to encrypt the function's environment variables. When Lambda SnapStart is activated, this key is also used to encrypt the function's snapshot. This key is returned only if you've configured a customer managed key.
|
|
1491
1516
|
*/
|
|
1492
1517
|
KMSKeyArn?: KMSKeyArn;
|
|
1493
1518
|
/**
|
|
@@ -1618,7 +1643,7 @@ declare namespace Lambda {
|
|
|
1618
1643
|
*/
|
|
1619
1644
|
Cors?: Cors;
|
|
1620
1645
|
/**
|
|
1621
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
1646
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
1622
1647
|
*/
|
|
1623
1648
|
AuthType: FunctionUrlAuthType;
|
|
1624
1649
|
}
|
|
@@ -1761,7 +1786,7 @@ declare namespace Lambda {
|
|
|
1761
1786
|
*/
|
|
1762
1787
|
FunctionArn: FunctionArn;
|
|
1763
1788
|
/**
|
|
1764
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
1789
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
1765
1790
|
*/
|
|
1766
1791
|
AuthType: FunctionUrlAuthType;
|
|
1767
1792
|
/**
|
|
@@ -1911,7 +1936,7 @@ declare namespace Lambda {
|
|
|
1911
1936
|
/**
|
|
1912
1937
|
* The name of the Lambda function. Name formats Function name – my-function. Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN – 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
|
|
1913
1938
|
*/
|
|
1914
|
-
FunctionName:
|
|
1939
|
+
FunctionName: NamespacedFunctionName;
|
|
1915
1940
|
/**
|
|
1916
1941
|
* Specify a version of the function. This can be $LATEST or a published version number. If no value is specified, the configuration for the $LATEST version is returned.
|
|
1917
1942
|
*/
|
|
@@ -1926,6 +1951,10 @@ declare namespace Lambda {
|
|
|
1926
1951
|
* The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise null is returned.
|
|
1927
1952
|
*/
|
|
1928
1953
|
RuntimeVersionArn?: RuntimeVersionArn;
|
|
1954
|
+
/**
|
|
1955
|
+
* The Amazon Resource Name (ARN) of your function.
|
|
1956
|
+
*/
|
|
1957
|
+
FunctionArn?: NameSpacedFunctionArn;
|
|
1929
1958
|
}
|
|
1930
1959
|
export type Handler = string;
|
|
1931
1960
|
export type Header = string;
|
|
@@ -3007,6 +3036,10 @@ declare namespace Lambda {
|
|
|
3007
3036
|
* (Amazon SQS only) The scaling configuration for the event source. For more information, see Configuring maximum concurrency for Amazon SQS event sources.
|
|
3008
3037
|
*/
|
|
3009
3038
|
ScalingConfig?: ScalingConfig;
|
|
3039
|
+
/**
|
|
3040
|
+
* Specific configuration settings for a DocumentDB event source.
|
|
3041
|
+
*/
|
|
3042
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
3010
3043
|
}
|
|
3011
3044
|
export interface UpdateFunctionCodeRequest {
|
|
3012
3045
|
/**
|
|
@@ -3084,7 +3117,7 @@ declare namespace Lambda {
|
|
|
3084
3117
|
*/
|
|
3085
3118
|
Environment?: Environment;
|
|
3086
3119
|
/**
|
|
3087
|
-
* The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive.
|
|
3120
|
+
* The identifier of the function's runtime. Runtime is required if the deployment package is a .zip file archive. The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
|
|
3088
3121
|
*/
|
|
3089
3122
|
Runtime?: Runtime;
|
|
3090
3123
|
/**
|
|
@@ -3092,7 +3125,7 @@ declare namespace Lambda {
|
|
|
3092
3125
|
*/
|
|
3093
3126
|
DeadLetterConfig?: DeadLetterConfig;
|
|
3094
3127
|
/**
|
|
3095
|
-
* The ARN of the Key Management Service (KMS) key that's used to encrypt your function's environment variables.
|
|
3128
|
+
* The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's environment variables. When Lambda SnapStart is activated, this key is also used to encrypt your function's snapshot. If you don't provide a customer managed key, Lambda uses a default service key.
|
|
3096
3129
|
*/
|
|
3097
3130
|
KMSKeyArn?: KMSKeyArn;
|
|
3098
3131
|
/**
|
|
@@ -3156,7 +3189,7 @@ declare namespace Lambda {
|
|
|
3156
3189
|
*/
|
|
3157
3190
|
Qualifier?: FunctionUrlQualifier;
|
|
3158
3191
|
/**
|
|
3159
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
3192
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
3160
3193
|
*/
|
|
3161
3194
|
AuthType?: FunctionUrlAuthType;
|
|
3162
3195
|
/**
|
|
@@ -3174,7 +3207,7 @@ declare namespace Lambda {
|
|
|
3174
3207
|
*/
|
|
3175
3208
|
FunctionArn: FunctionArn;
|
|
3176
3209
|
/**
|
|
3177
|
-
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated
|
|
3210
|
+
* The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.
|
|
3178
3211
|
*/
|
|
3179
3212
|
AuthType: FunctionUrlAuthType;
|
|
3180
3213
|
/**
|
|
@@ -547,7 +547,7 @@ declare namespace MediaConvert {
|
|
|
547
547
|
/**
|
|
548
548
|
* Specifies audio data from an external file source.
|
|
549
549
|
*/
|
|
550
|
-
ExternalAudioFileInput?:
|
|
550
|
+
ExternalAudioFileInput?: __stringPatternS3Https;
|
|
551
551
|
/**
|
|
552
552
|
* Settings specific to audio sources in an HLS alternate rendition group. Specify the properties (renditionGroupId, renditionName or renditionLanguageCode) to identify the unique audio track among the alternative rendition groups present in the HLS manifest. If no unique track is found, or multiple tracks match the properties provided, the job fails. If no properties in hlsRenditionGroupSettings are specified, the default audio track within the video segment is chosen. If there is no audio within video segment, the alternative audio with DEFAULT=YES is chosen instead.
|
|
553
553
|
*/
|
|
@@ -767,6 +767,18 @@ declare namespace MediaConvert {
|
|
|
767
767
|
*/
|
|
768
768
|
QualityTuningLevel?: AvcIntraUhdQualityTuningLevel;
|
|
769
769
|
}
|
|
770
|
+
export interface BandwidthReductionFilter {
|
|
771
|
+
/**
|
|
772
|
+
* Optionally specify the level of sharpening to apply when you use the Bandwidth reduction filter. Sharpening adds contrast to the edges of your video content and can reduce softness. Keep the default value Off to apply no sharpening. Set Sharpening strength to Low to apply a minimal amount of sharpening, or High to apply a maximum amount of sharpening.
|
|
773
|
+
*/
|
|
774
|
+
Sharpening?: BandwidthReductionFilterSharpening;
|
|
775
|
+
/**
|
|
776
|
+
* Specify the strength of the Bandwidth reduction filter. For most workflows, we recommend that you choose Auto. Your output bandwidth will be reduced by at least 8 percent with no perceptual decrease in video quality. If your output bandwidth isn't constrained, set Filter strength to Low or Medium. Low results in minimal to no impact in perceptual quality. For more bandwidth reduction, choose High. The filter helps equalize quality between all scenes and increases video softness. We recommend that you choose High for low bitrate outputs.
|
|
777
|
+
*/
|
|
778
|
+
Strength?: BandwidthReductionFilterStrength;
|
|
779
|
+
}
|
|
780
|
+
export type BandwidthReductionFilterSharpening = "LOW"|"MEDIUM"|"HIGH"|"OFF"|string;
|
|
781
|
+
export type BandwidthReductionFilterStrength = "LOW"|"MEDIUM"|"HIGH"|"AUTO"|"OFF"|string;
|
|
770
782
|
export type BillingTagsSource = "QUEUE"|"PRESET"|"JOB_TEMPLATE"|"JOB"|string;
|
|
771
783
|
export type BurnInSubtitleStylePassthrough = "ENABLED"|"DISABLED"|string;
|
|
772
784
|
export interface BurninDestinationSettings {
|
|
@@ -1290,11 +1302,11 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
1290
1302
|
*/
|
|
1291
1303
|
TimedMetadataBoxVersion?: CmfcTimedMetadataBoxVersion;
|
|
1292
1304
|
/**
|
|
1293
|
-
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more
|
|
1305
|
+
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
1294
1306
|
*/
|
|
1295
1307
|
TimedMetadataSchemeIdUri?: __stringMax1000;
|
|
1296
1308
|
/**
|
|
1297
|
-
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more
|
|
1309
|
+
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
1298
1310
|
*/
|
|
1299
1311
|
TimedMetadataValue?: __stringMax1000;
|
|
1300
1312
|
}
|
|
@@ -1321,6 +1333,10 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
1321
1333
|
* Use these settings when you convert to the HDR 10 color space. Specify the SMPTE ST 2086 Mastering Display Color Volume static metadata that you want signaled in the output. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator. When you set Color space conversion (ColorSpaceConversion) to HDR 10 (FORCE_HDR10), these settings are required. You must set values for Max frame average light level (maxFrameAverageLightLevel) and Max content light level (maxContentLightLevel); these settings don't have a default value. The default values for the other HDR 10 metadata settings are defined by the P3D65 color space. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr.
|
|
1322
1334
|
*/
|
|
1323
1335
|
Hdr10Metadata?: Hdr10Metadata;
|
|
1336
|
+
/**
|
|
1337
|
+
* Specify how MediaConvert maps brightness and colors from your HDR input to your SDR output. The mode that you select represents a creative choice, with different tradeoffs in the details and tones of your output. To maintain details in bright or saturated areas of your output: Choose Preserve details. For some sources, your SDR output may look less bright and less saturated when compared to your HDR source. MediaConvert automatically applies this mode for HLG sources, regardless of your choice. For a bright and saturated output: Choose Vibrant. We recommend that you choose this mode when any of your source content is HDR10, and for the best results when it is mastered for 1000 nits. You may notice loss of details in bright or saturated areas of your output. HDR to SDR tone mapping has no effect when your input is SDR.
|
|
1338
|
+
*/
|
|
1339
|
+
HdrToSdrToneMapper?: HDRToSDRToneMapper;
|
|
1324
1340
|
/**
|
|
1325
1341
|
* Hue in degrees.
|
|
1326
1342
|
*/
|
|
@@ -2225,7 +2241,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
|
2225
2241
|
}
|
|
2226
2242
|
export interface ExtendedDataServices {
|
|
2227
2243
|
/**
|
|
2228
|
-
* The action to take on
|
|
2244
|
+
* The action to take on copy and redistribution control XDS packets. If you select PASSTHROUGH, packets will not be changed. If you select STRIP, any packets will be removed in output captions.
|
|
2229
2245
|
*/
|
|
2230
2246
|
CopyProtectionAction?: CopyProtectionAction;
|
|
2231
2247
|
/**
|
|
@@ -2396,6 +2412,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
|
2396
2412
|
* Keep the default value, Auto (AUTO), for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set H264AdaptiveQuantization to a value other than Auto (AUTO). Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization (H264AdaptiveQuantization) to Off (OFF). Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization.
|
|
2397
2413
|
*/
|
|
2398
2414
|
AdaptiveQuantization?: H264AdaptiveQuantization;
|
|
2415
|
+
/**
|
|
2416
|
+
* The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy.Outputs that use this feature incur pro-tier pricing.When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
|
|
2417
|
+
*/
|
|
2418
|
+
BandwidthReductionFilter?: BandwidthReductionFilter;
|
|
2399
2419
|
/**
|
|
2400
2420
|
* Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
|
|
2401
2421
|
*/
|
|
@@ -2768,6 +2788,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
|
2768
2788
|
export type H265Tiles = "DISABLED"|"ENABLED"|string;
|
|
2769
2789
|
export type H265UnregisteredSeiTimecode = "DISABLED"|"ENABLED"|string;
|
|
2770
2790
|
export type H265WriteMp4PackagingType = "HVC1"|"HEV1"|string;
|
|
2791
|
+
export type HDRToSDRToneMapper = "PRESERVE_DETAILS"|"VIBRANT"|string;
|
|
2771
2792
|
export interface Hdr10Metadata {
|
|
2772
2793
|
/**
|
|
2773
2794
|
* HDR Master Display Information must be provided by a color grader, using color grading tools. Range is 0 to 50,000, each increment represents 0.00002 in CIE1931 color coordinate. Note that this setting is not for color correction.
|
|
@@ -3190,7 +3211,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
|
3190
3211
|
/**
|
|
3191
3212
|
* Specify the source file for your transcoding job. You can use multiple inputs in a single job. The service concatenates these inputs, in the order that you specify them in the job, to create the outputs. If your input format is IMF, specify your input by providing the path to your CPL. For example, "s3://bucket/vf/cpl.xml". If the CPL is in an incomplete IMP, make sure to use *Supplemental IMPs* (SupplementalImps) to specify any supplemental IMPs that contain assets referenced by the CPL.
|
|
3192
3213
|
*/
|
|
3193
|
-
FileInput?:
|
|
3214
|
+
FileInput?: __stringPatternS3Https;
|
|
3194
3215
|
/**
|
|
3195
3216
|
* Specify how the transcoding service applies the denoise and deblock filters. You must also enable the filters separately, with Denoise (InputDenoiseFilter) and Deblock (InputDeblockFilter). * Auto - The transcoding service determines whether to apply filtering, depending on input type and quality. * Disable - The input is not filtered. This is true even if you use the API to enable them in (InputDeblockFilter) and (InputDeblockFilter). * Force - The input is filtered regardless of input type.
|
|
3196
3217
|
*/
|
|
@@ -4338,11 +4359,11 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
4338
4359
|
*/
|
|
4339
4360
|
TimedMetadataBoxVersion?: MpdTimedMetadataBoxVersion;
|
|
4340
4361
|
/**
|
|
4341
|
-
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more
|
|
4362
|
+
* Specify the event message box (eMSG) scheme ID URI (scheme_id_uri) for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: https://aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
4342
4363
|
*/
|
|
4343
4364
|
TimedMetadataSchemeIdUri?: __stringMax1000;
|
|
4344
4365
|
/**
|
|
4345
|
-
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more
|
|
4366
|
+
* Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata (timedMetadata) to Passthrough.
|
|
4346
4367
|
*/
|
|
4347
4368
|
TimedMetadataValue?: __stringMax1000;
|
|
4348
4369
|
}
|
|
@@ -5653,7 +5674,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
5653
5674
|
*/
|
|
5654
5675
|
ImageInserter?: ImageInserter;
|
|
5655
5676
|
/**
|
|
5656
|
-
* Enable the Noise reducer
|
|
5677
|
+
* Enable the Noise reducer feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default. When you enable Noise reducer, you must also select a value for Noise reducer filter. For AVC outputs, when you include Noise reducer, you cannot include the Bandwidth reduction filter.
|
|
5657
5678
|
*/
|
|
5658
5679
|
NoiseReducer?: NoiseReducer;
|
|
5659
5680
|
/**
|
|
@@ -6257,8 +6278,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
6257
6278
|
export type __stringPatternIdentityAZaZ26AZaZ09163 = string;
|
|
6258
6279
|
export type __stringPatternS3 = string;
|
|
6259
6280
|
export type __stringPatternS3ASSETMAPXml = string;
|
|
6260
|
-
export type
|
|
6261
|
-
export type __stringPatternS3MM2PPWWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVaAFFLLAACCFFLLAAAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEAATTMMOOSSOOGGGGaAHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVaAFFLLAACCAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEAATTMMOOSSOOGGGGaA = string;
|
|
6281
|
+
export type __stringPatternS3Https = string;
|
|
6262
6282
|
export type __stringPatternSNManifestConfirmConditionNotificationNS = string;
|
|
6263
6283
|
export type __stringPatternSNSignalProcessingNotificationNS = string;
|
|
6264
6284
|
export type __stringPatternW = string;
|