aws-sdk 2.637.0 → 2.641.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 +23 -1
- package/README.md +1 -1
- package/apis/apigatewayv2-2018-11-29.min.json +437 -73
- package/apis/cognito-idp-2016-04-18.min.json +115 -112
- package/apis/ecs-2014-11-13.min.json +6 -0
- package/apis/elasticache-2015-02-02.min.json +424 -95
- package/apis/elasticache-2015-02-02.paginators.json +6 -0
- package/apis/iot-2015-05-28.min.json +111 -100
- package/apis/lex-models-2017-04-19.min.json +116 -1
- package/apis/mediaconvert-2017-08-29.min.json +121 -62
- package/apis/redshift-2012-12-01.min.json +112 -60
- package/apis/s3control-2018-08-20.min.json +100 -4
- package/apis/securityhub-2018-10-26.min.json +198 -155
- package/apis/ssm-2014-11-06.min.json +182 -176
- package/buildspec.yml +22 -0
- package/clients/apigatewayv2.d.ts +378 -45
- package/clients/appconfig.d.ts +6 -6
- package/clients/cognitoidentityserviceprovider.d.ts +10 -6
- package/clients/ec2.d.ts +1 -1
- package/clients/ecs.d.ts +15 -7
- package/clients/efs.d.ts +3 -3
- package/clients/elasticache.d.ts +390 -15
- package/clients/iot.d.ts +18 -3
- package/clients/lexmodelbuildingservice.d.ts +99 -0
- package/clients/mediaconvert.d.ts +73 -3
- package/clients/redshift.d.ts +44 -2
- package/clients/s3control.d.ts +72 -0
- package/clients/securityhub.d.ts +85 -4
- package/clients/ssm.d.ts +15 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +1076 -548
- package/dist/aws-sdk.min.js +63 -63
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +1 -1
- package/package.json +1 -1
package/clients/iot.d.ts
CHANGED
|
@@ -1704,6 +1704,10 @@ declare namespace Iot {
|
|
|
1704
1704
|
* Change the state of a CloudWatch alarm.
|
|
1705
1705
|
*/
|
|
1706
1706
|
cloudwatchAlarm?: CloudwatchAlarmAction;
|
|
1707
|
+
/**
|
|
1708
|
+
* Send data to CloudWatch logs.
|
|
1709
|
+
*/
|
|
1710
|
+
cloudwatchLogs?: CloudwatchLogsAction;
|
|
1707
1711
|
/**
|
|
1708
1712
|
* Write data to an Amazon Elasticsearch Service domain.
|
|
1709
1713
|
*/
|
|
@@ -2622,6 +2626,16 @@ declare namespace Iot {
|
|
|
2622
2626
|
*/
|
|
2623
2627
|
stateValue: StateValue;
|
|
2624
2628
|
}
|
|
2629
|
+
export interface CloudwatchLogsAction {
|
|
2630
|
+
/**
|
|
2631
|
+
* The IAM role that allows access to the CloudWatch log.
|
|
2632
|
+
*/
|
|
2633
|
+
roleArn: AwsArn;
|
|
2634
|
+
/**
|
|
2635
|
+
* The CloudWatch log group to which the action sends data.
|
|
2636
|
+
*/
|
|
2637
|
+
logGroupName: LogGroupName;
|
|
2638
|
+
}
|
|
2625
2639
|
export interface CloudwatchMetricAction {
|
|
2626
2640
|
/**
|
|
2627
2641
|
* The IAM role that allows access to the CloudWatch metric.
|
|
@@ -3983,7 +3997,7 @@ declare namespace Iot {
|
|
|
3983
3997
|
}
|
|
3984
3998
|
export interface DescribeEndpointRequest {
|
|
3985
3999
|
/**
|
|
3986
|
-
* The endpoint type. Valid endpoint types include: iot:Data - Returns a VeriSign signed data endpoint. iot:Data-ATS - Returns an ATS signed data endpoint. iot:CredentialProvider - Returns an AWS IoT credentials provider API endpoint. iot:Jobs - Returns an AWS IoT device management Jobs API endpoint.
|
|
4000
|
+
* The endpoint type. Valid endpoint types include: iot:Data - Returns a VeriSign signed data endpoint. iot:Data-ATS - Returns an ATS signed data endpoint. iot:CredentialProvider - Returns an AWS IoT credentials provider API endpoint. iot:Jobs - Returns an AWS IoT device management Jobs API endpoint. We strongly recommend that customers use the newer iot:Data-ATS endpoint type to avoid issues related to the widespread distrust of Symantec certificate authorities.
|
|
3987
4001
|
*/
|
|
3988
4002
|
endpointType?: EndpointType;
|
|
3989
4003
|
}
|
|
@@ -6673,6 +6687,7 @@ declare namespace Iot {
|
|
|
6673
6687
|
*/
|
|
6674
6688
|
nextToken?: NextToken;
|
|
6675
6689
|
}
|
|
6690
|
+
export type LogGroupName = string;
|
|
6676
6691
|
export type LogLevel = "DEBUG"|"INFO"|"ERROR"|"WARN"|"DISABLED"|string;
|
|
6677
6692
|
export interface LogTarget {
|
|
6678
6693
|
/**
|
|
@@ -7225,7 +7240,7 @@ declare namespace Iot {
|
|
|
7225
7240
|
}
|
|
7226
7241
|
export interface RegisterThingRequest {
|
|
7227
7242
|
/**
|
|
7228
|
-
* The provisioning template. See
|
|
7243
|
+
* The provisioning template. See Provisioning Devices That Have Device Certificates for more information.
|
|
7229
7244
|
*/
|
|
7230
7245
|
templateBody: TemplateBody;
|
|
7231
7246
|
/**
|
|
@@ -8647,7 +8662,7 @@ declare namespace Iot {
|
|
|
8647
8662
|
*/
|
|
8648
8663
|
certificateId: CertificateId;
|
|
8649
8664
|
/**
|
|
8650
|
-
* The new status. Note: Setting the status to PENDING_TRANSFER will result in an exception being thrown. PENDING_TRANSFER
|
|
8665
|
+
* The new status. Note: Setting the status to PENDING_TRANSFER or PENDING_ACTIVATION will result in an exception being thrown. PENDING_TRANSFER and PENDING_ACTIVATION are statuses used internally by AWS IoT. They are not intended for developer use. Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
|
|
8651
8666
|
*/
|
|
8652
8667
|
newStatus: CertificateStatus;
|
|
8653
8668
|
}
|
|
@@ -259,6 +259,14 @@ declare class LexModelBuildingService extends Service {
|
|
|
259
259
|
* Use the GetUtterancesView operation to get information about the utterances that your users have made to your bot. You can use this list to tune the utterances that your bot responds to. For example, say that you have created a bot to order flowers. After your users have used your bot for a while, use the GetUtterancesView operation to see the requests that they have made and whether they have been successful. You might find that the utterance "I want flowers" is not being recognized. You could add this utterance to the OrderFlowers intent so that your bot recognizes that utterance. After you publish a new version of a bot, you can get information about the old version and the new so that you can compare the performance across the two versions. Utterance statistics are generated once a day. Data is available for the last 15 days. You can request information for up to 5 versions of your bot in each request. Amazon Lex returns the most frequent utterances received by the bot in the last 15 days. The response contains information about a maximum of 100 utterances for each version. If you set childDirected field to true when you created your bot, or if you opted out of participating in improving Amazon Lex, utterances are not available. This operation requires permissions for the lex:GetUtterancesView action.
|
|
260
260
|
*/
|
|
261
261
|
getUtterancesView(callback?: (err: AWSError, data: LexModelBuildingService.Types.GetUtterancesViewResponse) => void): Request<LexModelBuildingService.Types.GetUtterancesViewResponse, AWSError>;
|
|
262
|
+
/**
|
|
263
|
+
* Gets a list of tags associated with the specified resource. Only bots, bot aliases, and bot channels can have tags associated with them.
|
|
264
|
+
*/
|
|
265
|
+
listTagsForResource(params: LexModelBuildingService.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: LexModelBuildingService.Types.ListTagsForResourceResponse) => void): Request<LexModelBuildingService.Types.ListTagsForResourceResponse, AWSError>;
|
|
266
|
+
/**
|
|
267
|
+
* Gets a list of tags associated with the specified resource. Only bots, bot aliases, and bot channels can have tags associated with them.
|
|
268
|
+
*/
|
|
269
|
+
listTagsForResource(callback?: (err: AWSError, data: LexModelBuildingService.Types.ListTagsForResourceResponse) => void): Request<LexModelBuildingService.Types.ListTagsForResourceResponse, AWSError>;
|
|
262
270
|
/**
|
|
263
271
|
* Creates an Amazon Lex conversational bot or replaces an existing bot. When you create or update a bot you are only required to specify a name, a locale, and whether the bot is directed toward children under age 13. You can use this to add intents later, or to remove intents from an existing bot. When you create a bot with the minimum information, the bot is created or updated but Amazon Lex returns the response FAILED. You can build the bot after you add one or more intents. For more information about Amazon Lex bots, see how-it-works. If you specify the name of an existing bot, the fields in the request replace the existing values in the $LATEST version of the bot. Amazon Lex removes any fields that you don't provide values for in the request, except for the idleTTLInSeconds and privacySettings fields, which are set to their default values. If you don't specify values for required fields, Amazon Lex throws an exception. This operation requires permissions for the lex:PutBot action. For more information, see security-iam.
|
|
264
272
|
*/
|
|
@@ -299,10 +307,27 @@ declare class LexModelBuildingService extends Service {
|
|
|
299
307
|
* Starts a job to import a resource to Amazon Lex.
|
|
300
308
|
*/
|
|
301
309
|
startImport(callback?: (err: AWSError, data: LexModelBuildingService.Types.StartImportResponse) => void): Request<LexModelBuildingService.Types.StartImportResponse, AWSError>;
|
|
310
|
+
/**
|
|
311
|
+
* Adds the specified tags to the specified resource. If a tag key already exists, the existing value is replaced with the new value.
|
|
312
|
+
*/
|
|
313
|
+
tagResource(params: LexModelBuildingService.Types.TagResourceRequest, callback?: (err: AWSError, data: LexModelBuildingService.Types.TagResourceResponse) => void): Request<LexModelBuildingService.Types.TagResourceResponse, AWSError>;
|
|
314
|
+
/**
|
|
315
|
+
* Adds the specified tags to the specified resource. If a tag key already exists, the existing value is replaced with the new value.
|
|
316
|
+
*/
|
|
317
|
+
tagResource(callback?: (err: AWSError, data: LexModelBuildingService.Types.TagResourceResponse) => void): Request<LexModelBuildingService.Types.TagResourceResponse, AWSError>;
|
|
318
|
+
/**
|
|
319
|
+
* Removes tags from a bot, bot alias or bot channel.
|
|
320
|
+
*/
|
|
321
|
+
untagResource(params: LexModelBuildingService.Types.UntagResourceRequest, callback?: (err: AWSError, data: LexModelBuildingService.Types.UntagResourceResponse) => void): Request<LexModelBuildingService.Types.UntagResourceResponse, AWSError>;
|
|
322
|
+
/**
|
|
323
|
+
* Removes tags from a bot, bot alias or bot channel.
|
|
324
|
+
*/
|
|
325
|
+
untagResource(callback?: (err: AWSError, data: LexModelBuildingService.Types.UntagResourceResponse) => void): Request<LexModelBuildingService.Types.UntagResourceResponse, AWSError>;
|
|
302
326
|
}
|
|
303
327
|
declare namespace LexModelBuildingService {
|
|
304
328
|
export type AliasName = string;
|
|
305
329
|
export type AliasNameOrListAll = string;
|
|
330
|
+
export type AmazonResourceName = string;
|
|
306
331
|
export type _Blob = Buffer|Uint8Array|Blob|string;
|
|
307
332
|
export type Boolean = boolean;
|
|
308
333
|
export interface BotAliasMetadata {
|
|
@@ -1521,6 +1546,18 @@ declare namespace LexModelBuildingService {
|
|
|
1521
1546
|
export type KmsKeyArn = string;
|
|
1522
1547
|
export type LambdaARN = string;
|
|
1523
1548
|
export type ListOfUtterance = UtteranceData[];
|
|
1549
|
+
export interface ListTagsForResourceRequest {
|
|
1550
|
+
/**
|
|
1551
|
+
* The Amazon Resource Name (ARN) of the resource to get a list of tags for.
|
|
1552
|
+
*/
|
|
1553
|
+
resourceArn: AmazonResourceName;
|
|
1554
|
+
}
|
|
1555
|
+
export interface ListTagsForResourceResponse {
|
|
1556
|
+
/**
|
|
1557
|
+
* The tags associated with a resource.
|
|
1558
|
+
*/
|
|
1559
|
+
tags?: TagList;
|
|
1560
|
+
}
|
|
1524
1561
|
export type ListsOfUtterances = UtteranceList[];
|
|
1525
1562
|
export type Locale = "en-US"|"en-GB"|"de-DE"|string;
|
|
1526
1563
|
export type LocaleList = Locale[];
|
|
@@ -1631,6 +1668,10 @@ declare namespace LexModelBuildingService {
|
|
|
1631
1668
|
* Settings for conversation logs for the alias.
|
|
1632
1669
|
*/
|
|
1633
1670
|
conversationLogs?: ConversationLogsRequest;
|
|
1671
|
+
/**
|
|
1672
|
+
* A list of tags to add to the bot alias. You can only add tags when you create an alias, you can't use the PutBotAlias operation to update the tags on a bot alias. To update tags, use the TagResource operation.
|
|
1673
|
+
*/
|
|
1674
|
+
tags?: TagList;
|
|
1634
1675
|
}
|
|
1635
1676
|
export interface PutBotAliasResponse {
|
|
1636
1677
|
/**
|
|
@@ -1665,6 +1706,10 @@ declare namespace LexModelBuildingService {
|
|
|
1665
1706
|
* The settings that determine how Amazon Lex uses conversation logs for the alias.
|
|
1666
1707
|
*/
|
|
1667
1708
|
conversationLogs?: ConversationLogsResponse;
|
|
1709
|
+
/**
|
|
1710
|
+
* A list of tags associated with a bot.
|
|
1711
|
+
*/
|
|
1712
|
+
tags?: TagList;
|
|
1668
1713
|
}
|
|
1669
1714
|
export interface PutBotRequest {
|
|
1670
1715
|
/**
|
|
@@ -1719,6 +1764,10 @@ declare namespace LexModelBuildingService {
|
|
|
1719
1764
|
* When set to true a new numbered version of the bot is created. This is the same as calling the CreateBotVersion operation. If you don't specify createVersion, the default is false.
|
|
1720
1765
|
*/
|
|
1721
1766
|
createVersion?: Boolean;
|
|
1767
|
+
/**
|
|
1768
|
+
* A list of tags to add to the bot. You can only add tags when you create a bot, you can't use the PutBot operation to update the tags on a bot. To update tags, use the TagResource operation.
|
|
1769
|
+
*/
|
|
1770
|
+
tags?: TagList;
|
|
1722
1771
|
}
|
|
1723
1772
|
export interface PutBotResponse {
|
|
1724
1773
|
/**
|
|
@@ -1789,6 +1838,10 @@ declare namespace LexModelBuildingService {
|
|
|
1789
1838
|
* true if the bot is configured to send user utterances to Amazon Comprehend for sentiment analysis. If the detectSentiment field was not specified in the request, the detectSentiment field is false in the response.
|
|
1790
1839
|
*/
|
|
1791
1840
|
detectSentiment?: Boolean;
|
|
1841
|
+
/**
|
|
1842
|
+
* A list of tags associated with the bot.
|
|
1843
|
+
*/
|
|
1844
|
+
tags?: TagList;
|
|
1792
1845
|
}
|
|
1793
1846
|
export interface PutIntentRequest {
|
|
1794
1847
|
/**
|
|
@@ -2093,6 +2146,10 @@ declare namespace LexModelBuildingService {
|
|
|
2093
2146
|
* Specifies the action that the StartImport operation should take when there is an existing resource with the same name. FAIL_ON_CONFLICT - The import operation is stopped on the first conflict between a resource in the import file and an existing resource. The name of the resource causing the conflict is in the failureReason field of the response to the GetImport operation. OVERWRITE_LATEST - The import operation proceeds even if there is a conflict with an existing resource. The $LASTEST version of the existing resource is overwritten with the data from the import file.
|
|
2094
2147
|
*/
|
|
2095
2148
|
mergeStrategy: MergeStrategy;
|
|
2149
|
+
/**
|
|
2150
|
+
* A list of tags to add to the imported bot. You can only add tags when you import a bot, you can't add tags to an intent or slot type.
|
|
2151
|
+
*/
|
|
2152
|
+
tags?: TagList;
|
|
2096
2153
|
}
|
|
2097
2154
|
export interface StartImportResponse {
|
|
2098
2155
|
/**
|
|
@@ -2115,6 +2172,10 @@ declare namespace LexModelBuildingService {
|
|
|
2115
2172
|
* The status of the import job. If the status is FAILED, you can get the reason for the failure using the GetImport operation.
|
|
2116
2173
|
*/
|
|
2117
2174
|
importStatus?: ImportStatus;
|
|
2175
|
+
/**
|
|
2176
|
+
* A list of tags added to the imported bot.
|
|
2177
|
+
*/
|
|
2178
|
+
tags?: TagList;
|
|
2118
2179
|
/**
|
|
2119
2180
|
* A timestamp for the date and time that the import job was requested.
|
|
2120
2181
|
*/
|
|
@@ -2135,7 +2196,45 @@ declare namespace LexModelBuildingService {
|
|
|
2135
2196
|
export type String = string;
|
|
2136
2197
|
export type StringList = String[];
|
|
2137
2198
|
export type SynonymList = Value[];
|
|
2199
|
+
export interface Tag {
|
|
2200
|
+
/**
|
|
2201
|
+
* The key for the tag. Keys are not case-sensitive and must be unique.
|
|
2202
|
+
*/
|
|
2203
|
+
key: TagKey;
|
|
2204
|
+
/**
|
|
2205
|
+
* The value associated with a key. The value may be an empty string but it can't be null.
|
|
2206
|
+
*/
|
|
2207
|
+
value: TagValue;
|
|
2208
|
+
}
|
|
2209
|
+
export type TagKey = string;
|
|
2210
|
+
export type TagKeyList = TagKey[];
|
|
2211
|
+
export type TagList = Tag[];
|
|
2212
|
+
export interface TagResourceRequest {
|
|
2213
|
+
/**
|
|
2214
|
+
* The Amazon Resource Name (ARN) of the bot, bot alias, or bot channel to tag.
|
|
2215
|
+
*/
|
|
2216
|
+
resourceArn: AmazonResourceName;
|
|
2217
|
+
/**
|
|
2218
|
+
* A list of tag keys to add to the resource. If a tag key already exists, the existing value is replaced with the new value.
|
|
2219
|
+
*/
|
|
2220
|
+
tags: TagList;
|
|
2221
|
+
}
|
|
2222
|
+
export interface TagResourceResponse {
|
|
2223
|
+
}
|
|
2224
|
+
export type TagValue = string;
|
|
2138
2225
|
export type Timestamp = Date;
|
|
2226
|
+
export interface UntagResourceRequest {
|
|
2227
|
+
/**
|
|
2228
|
+
* The Amazon Resource Name (ARN) of the resource to remove the tags from.
|
|
2229
|
+
*/
|
|
2230
|
+
resourceArn: AmazonResourceName;
|
|
2231
|
+
/**
|
|
2232
|
+
* A list of tag keys to remove from the resource. If a tag key does not exist on the resource, it is ignored.
|
|
2233
|
+
*/
|
|
2234
|
+
tagKeys: TagKeyList;
|
|
2235
|
+
}
|
|
2236
|
+
export interface UntagResourceResponse {
|
|
2237
|
+
}
|
|
2139
2238
|
export type UserId = string;
|
|
2140
2239
|
export type Utterance = string;
|
|
2141
2240
|
export interface UtteranceData {
|
|
@@ -509,6 +509,71 @@ declare namespace MediaConvert {
|
|
|
509
509
|
}
|
|
510
510
|
export type AudioSelectorType = "PID"|"TRACK"|"LANGUAGE_CODE"|string;
|
|
511
511
|
export type AudioTypeControl = "FOLLOW_INPUT"|"USE_CONFIGURED"|string;
|
|
512
|
+
export type Av1AdaptiveQuantization = "OFF"|"LOW"|"MEDIUM"|"HIGH"|"HIGHER"|"MAX"|string;
|
|
513
|
+
export type Av1FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
514
|
+
export type Av1FramerateConversionAlgorithm = "DUPLICATE_DROP"|"INTERPOLATE"|string;
|
|
515
|
+
export interface Av1QvbrSettings {
|
|
516
|
+
/**
|
|
517
|
+
* Required when you use QVBR rate control mode. That is, when you specify qvbrSettings within av1Settings. Specify the general 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. Optionally, to specify a value between whole numbers, also provide a value for the setting qvbrQualityLevelFineTune. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33.
|
|
518
|
+
*/
|
|
519
|
+
QvbrQualityLevel?: __integerMin1Max10;
|
|
520
|
+
/**
|
|
521
|
+
* Optional. Specify a value here to set the QVBR quality to a level that is between whole numbers. For example, if you want your QVBR quality level to be 7.33, set qvbrQualityLevel to 7 and set qvbrQualityLevelFineTune to .33. MediaConvert rounds your QVBR quality level to the nearest third of a whole number. For example, if you set qvbrQualityLevel to 7 and you set qvbrQualityLevelFineTune to .25, your actual QVBR quality level is 7.33.
|
|
522
|
+
*/
|
|
523
|
+
QvbrQualityLevelFineTune?: __doubleMin0Max1;
|
|
524
|
+
}
|
|
525
|
+
export type Av1RateControlMode = "QVBR"|string;
|
|
526
|
+
export interface Av1Settings {
|
|
527
|
+
/**
|
|
528
|
+
* Adaptive quantization. Allows intra-frame quantizers to vary to improve visual quality.
|
|
529
|
+
*/
|
|
530
|
+
AdaptiveQuantization?: Av1AdaptiveQuantization;
|
|
531
|
+
/**
|
|
532
|
+
* If you are using the console, use the Framerate setting to specify the frame rate for this output. If you want to keep the same frame rate as the input video, choose Follow source. If you want to do frame rate conversion, choose a frame rate from the dropdown list or choose Custom. The framerates shown in the dropdown list are decimal approximations of fractions. If you choose Custom, specify your frame rate as a fraction. If you are creating your transcoding job specification as a JSON file without the console, use FramerateControl to specify which value the service uses for the frame rate for this output. Choose INITIALIZE_FROM_SOURCE if you want the service to use the frame rate from the input. Choose SPECIFIED if you want the service to use the frame rate you specify in the settings FramerateNumerator and FramerateDenominator.
|
|
533
|
+
*/
|
|
534
|
+
FramerateControl?: Av1FramerateControl;
|
|
535
|
+
/**
|
|
536
|
+
* When set to INTERPOLATE, produces smoother motion during frame rate conversion.
|
|
537
|
+
*/
|
|
538
|
+
FramerateConversionAlgorithm?: Av1FramerateConversionAlgorithm;
|
|
539
|
+
/**
|
|
540
|
+
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
541
|
+
*/
|
|
542
|
+
FramerateDenominator?: __integerMin1Max2147483647;
|
|
543
|
+
/**
|
|
544
|
+
* When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator. When you use the console for transcode jobs that use frame rate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.
|
|
545
|
+
*/
|
|
546
|
+
FramerateNumerator?: __integerMin1Max2147483647;
|
|
547
|
+
/**
|
|
548
|
+
* Specify the GOP length (keyframe interval) in frames. With AV1, MediaConvert doesn't support GOP length in seconds. This value must be greater than zero and preferably equal to 1 + ((numberBFrames + 1) * x), where x is an integer value.
|
|
549
|
+
*/
|
|
550
|
+
GopSize?: __doubleMin0;
|
|
551
|
+
/**
|
|
552
|
+
* Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.
|
|
553
|
+
*/
|
|
554
|
+
MaxBitrate?: __integerMin1000Max1152000000;
|
|
555
|
+
/**
|
|
556
|
+
* Specify the number of B-frames. With AV1, MediaConvert supports only 7 or 15.
|
|
557
|
+
*/
|
|
558
|
+
NumberBFramesBetweenReferenceFrames?: __integerMin7Max15;
|
|
559
|
+
/**
|
|
560
|
+
* Settings for quality-defined variable bitrate encoding with the AV1 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.
|
|
561
|
+
*/
|
|
562
|
+
QvbrSettings?: Av1QvbrSettings;
|
|
563
|
+
/**
|
|
564
|
+
* 'With AV1 outputs, for rate control mode, MediaConvert supports only quality-defined variable bitrate (QVBR). You can''t use CBR or VBR.'
|
|
565
|
+
*/
|
|
566
|
+
RateControlMode?: Av1RateControlMode;
|
|
567
|
+
/**
|
|
568
|
+
* Specify the number of slices per picture. This value must be 1, 2, 4, 8, 16, or 32. For progressive pictures, this value must be less than or equal to the number of macroblock rows. For interlaced pictures, this value must be less than or equal to half the number of macroblock rows.
|
|
569
|
+
*/
|
|
570
|
+
Slices?: __integerMin1Max32;
|
|
571
|
+
/**
|
|
572
|
+
* Adjust quantization within each frame based on spatial variation of content complexity.
|
|
573
|
+
*/
|
|
574
|
+
SpatialAdaptiveQuantization?: Av1SpatialAdaptiveQuantization;
|
|
575
|
+
}
|
|
576
|
+
export type Av1SpatialAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
|
512
577
|
export interface AvailBlanking {
|
|
513
578
|
/**
|
|
514
579
|
* Blanking image to be used. Leave empty for solid black. Only bmp and png images are supported.
|
|
@@ -875,7 +940,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
875
940
|
*/
|
|
876
941
|
Brightness?: __integerMin1Max100;
|
|
877
942
|
/**
|
|
878
|
-
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats,
|
|
943
|
+
* Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, from SDR to HDR, and from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output. HDR to SDR conversion uses Elemental tone mapping technology to approximate the outcome of manually regrading from HDR to SDR.
|
|
879
944
|
*/
|
|
880
945
|
ColorSpaceConversion?: ColorSpaceConversion;
|
|
881
946
|
/**
|
|
@@ -4297,8 +4362,12 @@ Valid values: 3.0, 1.5, 0.0, -1.5, -3.0, -4.5, and -6.0.
|
|
|
4297
4362
|
*/
|
|
4298
4363
|
Queue?: Queue;
|
|
4299
4364
|
}
|
|
4300
|
-
export type VideoCodec = "FRAME_CAPTURE"|"H_264"|"H_265"|"MPEG2"|"PRORES"|string;
|
|
4365
|
+
export type VideoCodec = "FRAME_CAPTURE"|"AV1"|"H_264"|"H_265"|"MPEG2"|"PRORES"|string;
|
|
4301
4366
|
export interface VideoCodecSettings {
|
|
4367
|
+
/**
|
|
4368
|
+
* Required when you set Codec, under VideoDescription>CodecSettings to the value AV1.
|
|
4369
|
+
*/
|
|
4370
|
+
Av1Settings?: Av1Settings;
|
|
4302
4371
|
/**
|
|
4303
4372
|
* Specifies the video codec. This must be equal to one of the enum values defined by the object VideoCodec.
|
|
4304
4373
|
*/
|
|
@@ -4334,7 +4403,7 @@ Valid values: 3.0, 1.5, 0.0, -1.5, -3.0, -4.5, and -6.0.
|
|
|
4334
4403
|
*/
|
|
4335
4404
|
AntiAlias?: AntiAlias;
|
|
4336
4405
|
/**
|
|
4337
|
-
* Video codec settings, (CodecSettings) under (VideoDescription), contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec (Codec). For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * FRAME_CAPTURE, FrameCaptureSettings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings
|
|
4406
|
+
* Video codec settings, (CodecSettings) under (VideoDescription), contains the group of settings related to video encoding. The settings in this group vary depending on the value that you choose for Video codec (Codec). For each codec enum that you choose, define the corresponding settings object. The following lists the codec enum, settings object pairs. * FRAME_CAPTURE, FrameCaptureSettings * AV1, Av1Settings * H_264, H264Settings * H_265, H265Settings * MPEG2, Mpeg2Settings * PRORES, ProresSettings
|
|
4338
4407
|
*/
|
|
4339
4408
|
CodecSettings?: VideoCodecSettings;
|
|
4340
4409
|
/**
|
|
@@ -4543,6 +4612,7 @@ Valid values: 3.0, 1.5, 0.0, -1.5, -3.0, -4.5, and -6.0.
|
|
|
4543
4612
|
export type __integerMin48000Max48000 = number;
|
|
4544
4613
|
export type __integerMin6000Max1024000 = number;
|
|
4545
4614
|
export type __integerMin64000Max640000 = number;
|
|
4615
|
+
export type __integerMin7Max15 = number;
|
|
4546
4616
|
export type __integerMin8000Max192000 = number;
|
|
4547
4617
|
export type __integerMin8000Max96000 = number;
|
|
4548
4618
|
export type __integerMin96Max600 = number;
|
package/clients/redshift.d.ts
CHANGED
|
@@ -624,6 +624,14 @@ declare class Redshift extends Service {
|
|
|
624
624
|
* Modifies a snapshot schedule. Any schedule associated with a cluster is modified asynchronously.
|
|
625
625
|
*/
|
|
626
626
|
modifySnapshotSchedule(callback?: (err: AWSError, data: Redshift.Types.SnapshotSchedule) => void): Request<Redshift.Types.SnapshotSchedule, AWSError>;
|
|
627
|
+
/**
|
|
628
|
+
* Pauses a cluster.
|
|
629
|
+
*/
|
|
630
|
+
pauseCluster(params: Redshift.Types.PauseClusterMessage, callback?: (err: AWSError, data: Redshift.Types.PauseClusterResult) => void): Request<Redshift.Types.PauseClusterResult, AWSError>;
|
|
631
|
+
/**
|
|
632
|
+
* Pauses a cluster.
|
|
633
|
+
*/
|
|
634
|
+
pauseCluster(callback?: (err: AWSError, data: Redshift.Types.PauseClusterResult) => void): Request<Redshift.Types.PauseClusterResult, AWSError>;
|
|
627
635
|
/**
|
|
628
636
|
* Allows you to purchase reserved nodes. Amazon Redshift offers a predefined set of reserved node offerings. You can purchase one or more of the offerings. You can call the DescribeReservedNodeOfferings API to obtain the available reserved node offerings. You can call this API by providing a specific reserved node offering and the number of nodes you want to reserve. For more information about reserved node offerings, go to Purchasing Reserved Nodes in the Amazon Redshift Cluster Management Guide.
|
|
629
637
|
*/
|
|
@@ -672,6 +680,14 @@ declare class Redshift extends Service {
|
|
|
672
680
|
* Creates a new table from a table in an Amazon Redshift cluster snapshot. You must create the new table within the Amazon Redshift cluster that the snapshot was taken from. You cannot use RestoreTableFromClusterSnapshot to restore a table with the same name as an existing table in an Amazon Redshift cluster. That is, you cannot overwrite an existing table in a cluster with a restored table. If you want to replace your original table with a new, restored table, then rename or drop your original table before you call RestoreTableFromClusterSnapshot. When you have renamed your original table, then you can pass the original name of the table as the NewTableName parameter value in the call to RestoreTableFromClusterSnapshot. This way, you can replace the original table with the table created from the snapshot.
|
|
673
681
|
*/
|
|
674
682
|
restoreTableFromClusterSnapshot(callback?: (err: AWSError, data: Redshift.Types.RestoreTableFromClusterSnapshotResult) => void): Request<Redshift.Types.RestoreTableFromClusterSnapshotResult, AWSError>;
|
|
683
|
+
/**
|
|
684
|
+
* Resumes a paused cluster.
|
|
685
|
+
*/
|
|
686
|
+
resumeCluster(params: Redshift.Types.ResumeClusterMessage, callback?: (err: AWSError, data: Redshift.Types.ResumeClusterResult) => void): Request<Redshift.Types.ResumeClusterResult, AWSError>;
|
|
687
|
+
/**
|
|
688
|
+
* Resumes a paused cluster.
|
|
689
|
+
*/
|
|
690
|
+
resumeCluster(callback?: (err: AWSError, data: Redshift.Types.ResumeClusterResult) => void): Request<Redshift.Types.ResumeClusterResult, AWSError>;
|
|
675
691
|
/**
|
|
676
692
|
* Revokes an ingress rule in an Amazon Redshift security group for a previously authorized IP range or Amazon EC2 security group. To add an ingress rule, see AuthorizeClusterSecurityGroupIngress. For information about managing security groups, go to Amazon Redshift Cluster Security Groups in the Amazon Redshift Cluster Management Guide.
|
|
677
693
|
*/
|
|
@@ -893,7 +909,7 @@ declare namespace Redshift {
|
|
|
893
909
|
*/
|
|
894
910
|
NodeType?: String;
|
|
895
911
|
/**
|
|
896
|
-
* The current state of the cluster. Possible values are the following: available available, prep-for-resize available, resize-cleanup cancelling-resize creating deleting final-snapshot hardware-failure incompatible-hsm incompatible-network incompatible-parameters incompatible-restore modifying rebooting renaming resizing rotating-keys storage-full updating-hsm
|
|
912
|
+
* The current state of the cluster. Possible values are the following: available available, prep-for-resize available, resize-cleanup cancelling-resize creating deleting final-snapshot hardware-failure incompatible-hsm incompatible-network incompatible-parameters incompatible-restore modifying paused rebooting renaming resizing rotating-keys storage-full updating-hsm
|
|
897
913
|
*/
|
|
898
914
|
ClusterStatus?: String;
|
|
899
915
|
/**
|
|
@@ -3311,6 +3327,15 @@ declare namespace Redshift {
|
|
|
3311
3327
|
export type ParameterApplyType = "static"|"dynamic"|string;
|
|
3312
3328
|
export type ParameterGroupList = ClusterParameterGroup[];
|
|
3313
3329
|
export type ParametersList = Parameter[];
|
|
3330
|
+
export interface PauseClusterMessage {
|
|
3331
|
+
/**
|
|
3332
|
+
* The identifier of the cluster to be paused.
|
|
3333
|
+
*/
|
|
3334
|
+
ClusterIdentifier: String;
|
|
3335
|
+
}
|
|
3336
|
+
export interface PauseClusterResult {
|
|
3337
|
+
Cluster?: Cluster;
|
|
3338
|
+
}
|
|
3314
3339
|
export type PendingActionsList = String[];
|
|
3315
3340
|
export interface PendingModifiedValues {
|
|
3316
3341
|
/**
|
|
@@ -3794,6 +3819,15 @@ declare namespace Redshift {
|
|
|
3794
3819
|
export interface RestoreTableFromClusterSnapshotResult {
|
|
3795
3820
|
TableRestoreStatus?: TableRestoreStatus;
|
|
3796
3821
|
}
|
|
3822
|
+
export interface ResumeClusterMessage {
|
|
3823
|
+
/**
|
|
3824
|
+
* The identifier of the cluster to be resumed.
|
|
3825
|
+
*/
|
|
3826
|
+
ClusterIdentifier: String;
|
|
3827
|
+
}
|
|
3828
|
+
export interface ResumeClusterResult {
|
|
3829
|
+
Cluster?: Cluster;
|
|
3830
|
+
}
|
|
3797
3831
|
export interface RevisionTarget {
|
|
3798
3832
|
/**
|
|
3799
3833
|
* A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision.
|
|
@@ -3916,8 +3950,16 @@ declare namespace Redshift {
|
|
|
3916
3950
|
* An action that runs a ResizeCluster API operation.
|
|
3917
3951
|
*/
|
|
3918
3952
|
ResizeCluster?: ResizeClusterMessage;
|
|
3953
|
+
/**
|
|
3954
|
+
* An action that runs a PauseCluster API operation.
|
|
3955
|
+
*/
|
|
3956
|
+
PauseCluster?: PauseClusterMessage;
|
|
3957
|
+
/**
|
|
3958
|
+
* An action that runs a ResumeCluster API operation.
|
|
3959
|
+
*/
|
|
3960
|
+
ResumeCluster?: ResumeClusterMessage;
|
|
3919
3961
|
}
|
|
3920
|
-
export type ScheduledActionTypeValues = "ResizeCluster"|string;
|
|
3962
|
+
export type ScheduledActionTypeValues = "ResizeCluster"|"PauseCluster"|"ResumeCluster"|string;
|
|
3921
3963
|
export interface ScheduledActionsMessage {
|
|
3922
3964
|
/**
|
|
3923
3965
|
* An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeScheduledActions request exceed the value specified in MaxRecords, AWS returns a value in the Marker field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker parameter and retrying the request.
|
package/clients/s3control.d.ts
CHANGED
|
@@ -44,6 +44,14 @@ declare class S3Control extends Service {
|
|
|
44
44
|
* Deletes the access point policy for the specified access point.
|
|
45
45
|
*/
|
|
46
46
|
deleteAccessPointPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
47
|
+
/**
|
|
48
|
+
* Delete the tags on a Amazon S3 batch operations job, if any.
|
|
49
|
+
*/
|
|
50
|
+
deleteJobTagging(params: S3Control.Types.DeleteJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.DeleteJobTaggingResult) => void): Request<S3Control.Types.DeleteJobTaggingResult, AWSError>;
|
|
51
|
+
/**
|
|
52
|
+
* Delete the tags on a Amazon S3 batch operations job, if any.
|
|
53
|
+
*/
|
|
54
|
+
deleteJobTagging(callback?: (err: AWSError, data: S3Control.Types.DeleteJobTaggingResult) => void): Request<S3Control.Types.DeleteJobTaggingResult, AWSError>;
|
|
47
55
|
/**
|
|
48
56
|
* Removes the PublicAccessBlock configuration for an Amazon Web Services account.
|
|
49
57
|
*/
|
|
@@ -84,6 +92,14 @@ declare class S3Control extends Service {
|
|
|
84
92
|
* Indicates whether the specified access point currently has a policy that allows public access. For more information about public access through access points, see Managing Data Access with Amazon S3 Access Points in the Amazon Simple Storage Service Developer Guide.
|
|
85
93
|
*/
|
|
86
94
|
getAccessPointPolicyStatus(callback?: (err: AWSError, data: S3Control.Types.GetAccessPointPolicyStatusResult) => void): Request<S3Control.Types.GetAccessPointPolicyStatusResult, AWSError>;
|
|
95
|
+
/**
|
|
96
|
+
* Retrieve the tags on a Amazon S3 batch operations job.
|
|
97
|
+
*/
|
|
98
|
+
getJobTagging(params: S3Control.Types.GetJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.GetJobTaggingResult) => void): Request<S3Control.Types.GetJobTaggingResult, AWSError>;
|
|
99
|
+
/**
|
|
100
|
+
* Retrieve the tags on a Amazon S3 batch operations job.
|
|
101
|
+
*/
|
|
102
|
+
getJobTagging(callback?: (err: AWSError, data: S3Control.Types.GetJobTaggingResult) => void): Request<S3Control.Types.GetJobTaggingResult, AWSError>;
|
|
87
103
|
/**
|
|
88
104
|
* Retrieves the PublicAccessBlock configuration for an Amazon Web Services account.
|
|
89
105
|
*/
|
|
@@ -116,6 +132,14 @@ declare class S3Control extends Service {
|
|
|
116
132
|
* Associates an access policy with the specified access point. Each access point can have only one policy, so a request made to this API replaces any existing policy associated with the specified access point.
|
|
117
133
|
*/
|
|
118
134
|
putAccessPointPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
135
|
+
/**
|
|
136
|
+
* Replace the set of tags on a Amazon S3 batch operations job.
|
|
137
|
+
*/
|
|
138
|
+
putJobTagging(params: S3Control.Types.PutJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
139
|
+
/**
|
|
140
|
+
* Replace the set of tags on a Amazon S3 batch operations job.
|
|
141
|
+
*/
|
|
142
|
+
putJobTagging(callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
119
143
|
/**
|
|
120
144
|
* Creates or modifies the PublicAccessBlock configuration for an Amazon Web Services account.
|
|
121
145
|
*/
|
|
@@ -222,6 +246,10 @@ declare namespace S3Control {
|
|
|
222
246
|
* The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) Role that batch operations will use to execute this job's operation on each object in the manifest.
|
|
223
247
|
*/
|
|
224
248
|
RoleArn: IAMRoleArn;
|
|
249
|
+
/**
|
|
250
|
+
* An optional set of tags to associate with the job when it is created.
|
|
251
|
+
*/
|
|
252
|
+
Tags?: S3TagSet;
|
|
225
253
|
}
|
|
226
254
|
export interface CreateJobResult {
|
|
227
255
|
/**
|
|
@@ -250,6 +278,18 @@ declare namespace S3Control {
|
|
|
250
278
|
*/
|
|
251
279
|
Name: AccessPointName;
|
|
252
280
|
}
|
|
281
|
+
export interface DeleteJobTaggingRequest {
|
|
282
|
+
/**
|
|
283
|
+
* The account ID for the Amazon Web Services account associated with the Amazon S3 batch operations job you want to remove tags from.
|
|
284
|
+
*/
|
|
285
|
+
AccountId: AccountId;
|
|
286
|
+
/**
|
|
287
|
+
* The ID for the job whose tags you want to delete.
|
|
288
|
+
*/
|
|
289
|
+
JobId: JobId;
|
|
290
|
+
}
|
|
291
|
+
export interface DeleteJobTaggingResult {
|
|
292
|
+
}
|
|
253
293
|
export interface DeletePublicAccessBlockRequest {
|
|
254
294
|
/**
|
|
255
295
|
* The account ID for the Amazon Web Services account whose PublicAccessBlock configuration you want to remove.
|
|
@@ -337,6 +377,22 @@ declare namespace S3Control {
|
|
|
337
377
|
*/
|
|
338
378
|
CreationDate?: CreationDate;
|
|
339
379
|
}
|
|
380
|
+
export interface GetJobTaggingRequest {
|
|
381
|
+
/**
|
|
382
|
+
* The account ID for the Amazon Web Services account associated with the Amazon S3 batch operations job you want to retrieve tags for.
|
|
383
|
+
*/
|
|
384
|
+
AccountId: AccountId;
|
|
385
|
+
/**
|
|
386
|
+
* The ID for the job whose tags you want to retrieve.
|
|
387
|
+
*/
|
|
388
|
+
JobId: JobId;
|
|
389
|
+
}
|
|
390
|
+
export interface GetJobTaggingResult {
|
|
391
|
+
/**
|
|
392
|
+
* The set of tags associated with the job.
|
|
393
|
+
*/
|
|
394
|
+
Tags?: S3TagSet;
|
|
395
|
+
}
|
|
340
396
|
export interface GetPublicAccessBlockOutput {
|
|
341
397
|
/**
|
|
342
398
|
* The PublicAccessBlock configuration currently in effect for this Amazon Web Services account.
|
|
@@ -687,6 +743,22 @@ declare namespace S3Control {
|
|
|
687
743
|
*/
|
|
688
744
|
Policy: Policy;
|
|
689
745
|
}
|
|
746
|
+
export interface PutJobTaggingRequest {
|
|
747
|
+
/**
|
|
748
|
+
* The account ID for the Amazon Web Services account associated with the Amazon S3 batch operations job you want to replace tags on.
|
|
749
|
+
*/
|
|
750
|
+
AccountId: AccountId;
|
|
751
|
+
/**
|
|
752
|
+
* The ID for the job whose tags you want to replace.
|
|
753
|
+
*/
|
|
754
|
+
JobId: JobId;
|
|
755
|
+
/**
|
|
756
|
+
* The set of tags to associate with the job.
|
|
757
|
+
*/
|
|
758
|
+
Tags: S3TagSet;
|
|
759
|
+
}
|
|
760
|
+
export interface PutJobTaggingResult {
|
|
761
|
+
}
|
|
690
762
|
export interface PutPublicAccessBlockRequest {
|
|
691
763
|
/**
|
|
692
764
|
* The PublicAccessBlock configuration that you want to apply to the specified Amazon Web Services account.
|