aws-sdk 2.972.0 → 2.976.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 +29 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +573 -32
- package/apis/backup-2018-11-15.paginators.json +15 -0
- package/apis/comprehend-2017-11-27.min.json +109 -69
- package/apis/datasync-2018-11-09.min.json +13 -1
- package/apis/dlm-2018-01-12.min.json +30 -9
- package/apis/dms-2016-01-01.min.json +191 -134
- package/apis/ec2-2016-11-15.min.json +232 -223
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/eks-2017-11-01.min.json +5 -0
- package/apis/fms-2018-01-01.min.json +6 -0
- package/apis/frauddetector-2019-11-15.min.json +30 -28
- package/apis/glue-2017-03-31.min.json +624 -354
- package/apis/glue-2017-03-31.paginators.json +10 -0
- package/apis/iot-data-2015-05-28.min.json +82 -0
- package/apis/iot-data-2015-05-28.paginators.json +7 -1
- package/apis/mediaconvert-2017-08-29.min.json +110 -89
- package/apis/ssm-2014-11-06.min.json +13 -3
- package/apis/transcribe-2017-10-26.min.json +161 -64
- package/clients/apigateway.d.ts +9 -9
- package/clients/backup.d.ts +715 -109
- package/clients/cloudwatchevents.d.ts +67 -67
- package/clients/comprehend.d.ts +96 -0
- package/clients/datasync.d.ts +69 -53
- package/clients/dlm.d.ts +50 -18
- package/clients/dms.d.ts +110 -19
- package/clients/ec2.d.ts +60 -42
- package/clients/eks.d.ts +6 -2
- package/clients/eventbridge.d.ts +3 -3
- package/clients/fms.d.ts +9 -1
- package/clients/frauddetector.d.ts +10 -9
- package/clients/glue.d.ts +392 -0
- package/clients/iotdata.d.ts +99 -13
- package/clients/iotsitewise.d.ts +3 -3
- package/clients/mediaconvert.d.ts +46 -12
- package/clients/polly.d.ts +15 -15
- package/clients/robomaker.d.ts +3 -3
- package/clients/transcribeservice.d.ts +146 -35
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +19 -19
- package/dist/aws-sdk.js +456 -300
- package/dist/aws-sdk.min.js +72 -71
- package/lib/core.js +1 -1
- package/lib/metadata_service/endpoint.js +6 -0
- package/lib/metadata_service/endpoint_config_options.js +14 -0
- package/lib/metadata_service/endpoint_mode.js +6 -0
- package/lib/metadata_service/endpoint_mode_config_options.js +16 -0
- package/lib/metadata_service/get_metadata_service_endpoint.js +24 -0
- package/lib/metadata_service.js +13 -3
- package/lib/node_loader.js +27 -0
- package/package.json +1 -1
package/clients/iotdata.d.ts
CHANGED
|
@@ -12,43 +12,59 @@ declare class IotData extends Service {
|
|
|
12
12
|
constructor(options?: IotData.Types.ClientConfiguration)
|
|
13
13
|
config: Config & IotData.Types.ClientConfiguration;
|
|
14
14
|
/**
|
|
15
|
-
* Deletes the shadow for the specified thing. For more information, see DeleteThingShadow in the
|
|
15
|
+
* Deletes the shadow for the specified thing. Requires permission to access the DeleteThingShadow action. For more information, see DeleteThingShadow in the IoT Developer Guide.
|
|
16
16
|
*/
|
|
17
17
|
deleteThingShadow(params: IotData.Types.DeleteThingShadowRequest, callback?: (err: AWSError, data: IotData.Types.DeleteThingShadowResponse) => void): Request<IotData.Types.DeleteThingShadowResponse, AWSError>;
|
|
18
18
|
/**
|
|
19
|
-
* Deletes the shadow for the specified thing. For more information, see DeleteThingShadow in the
|
|
19
|
+
* Deletes the shadow for the specified thing. Requires permission to access the DeleteThingShadow action. For more information, see DeleteThingShadow in the IoT Developer Guide.
|
|
20
20
|
*/
|
|
21
21
|
deleteThingShadow(callback?: (err: AWSError, data: IotData.Types.DeleteThingShadowResponse) => void): Request<IotData.Types.DeleteThingShadowResponse, AWSError>;
|
|
22
22
|
/**
|
|
23
|
-
* Gets the
|
|
23
|
+
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
24
|
+
*/
|
|
25
|
+
getRetainedMessage(params: IotData.Types.GetRetainedMessageRequest, callback?: (err: AWSError, data: IotData.Types.GetRetainedMessageResponse) => void): Request<IotData.Types.GetRetainedMessageResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Gets the details of a single retained message for the specified topic. This action returns the message payload of the retained message, which can incur messaging costs. To list only the topic names of the retained messages, call ListRetainedMessages. Requires permission to access the GetRetainedMessage action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
28
|
+
*/
|
|
29
|
+
getRetainedMessage(callback?: (err: AWSError, data: IotData.Types.GetRetainedMessageResponse) => void): Request<IotData.Types.GetRetainedMessageResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Gets the shadow for the specified thing. Requires permission to access the GetThingShadow action. For more information, see GetThingShadow in the IoT Developer Guide.
|
|
24
32
|
*/
|
|
25
33
|
getThingShadow(params: IotData.Types.GetThingShadowRequest, callback?: (err: AWSError, data: IotData.Types.GetThingShadowResponse) => void): Request<IotData.Types.GetThingShadowResponse, AWSError>;
|
|
26
34
|
/**
|
|
27
|
-
* Gets the shadow for the specified thing. For more information, see GetThingShadow in the
|
|
35
|
+
* Gets the shadow for the specified thing. Requires permission to access the GetThingShadow action. For more information, see GetThingShadow in the IoT Developer Guide.
|
|
28
36
|
*/
|
|
29
37
|
getThingShadow(callback?: (err: AWSError, data: IotData.Types.GetThingShadowResponse) => void): Request<IotData.Types.GetThingShadowResponse, AWSError>;
|
|
30
38
|
/**
|
|
31
|
-
* Lists the shadows for the specified thing.
|
|
39
|
+
* Lists the shadows for the specified thing. Requires permission to access the ListNamedShadowsForThing action.
|
|
32
40
|
*/
|
|
33
41
|
listNamedShadowsForThing(params: IotData.Types.ListNamedShadowsForThingRequest, callback?: (err: AWSError, data: IotData.Types.ListNamedShadowsForThingResponse) => void): Request<IotData.Types.ListNamedShadowsForThingResponse, AWSError>;
|
|
34
42
|
/**
|
|
35
|
-
* Lists the shadows for the specified thing.
|
|
43
|
+
* Lists the shadows for the specified thing. Requires permission to access the ListNamedShadowsForThing action.
|
|
36
44
|
*/
|
|
37
45
|
listNamedShadowsForThing(callback?: (err: AWSError, data: IotData.Types.ListNamedShadowsForThingResponse) => void): Request<IotData.Types.ListNamedShadowsForThingResponse, AWSError>;
|
|
38
46
|
/**
|
|
39
|
-
*
|
|
47
|
+
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
48
|
+
*/
|
|
49
|
+
listRetainedMessages(params: IotData.Types.ListRetainedMessagesRequest, callback?: (err: AWSError, data: IotData.Types.ListRetainedMessagesResponse) => void): Request<IotData.Types.ListRetainedMessagesResponse, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Lists summary information about the retained messages stored for the account. This action returns only the topic names of the retained messages. It doesn't return any message payloads. Although this action doesn't return a message payload, it can still incur messaging costs. To get the message payload of a retained message, call GetRetainedMessage with the topic name of the retained message. Requires permission to access the ListRetainedMessages action. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
52
|
+
*/
|
|
53
|
+
listRetainedMessages(callback?: (err: AWSError, data: IotData.Types.ListRetainedMessagesResponse) => void): Request<IotData.Types.ListRetainedMessagesResponse, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
40
56
|
*/
|
|
41
57
|
publish(params: IotData.Types.PublishRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
42
58
|
/**
|
|
43
|
-
* Publishes
|
|
59
|
+
* Publishes an MQTT message. Requires permission to access the Publish action. For more information about MQTT messages, see MQTT Protocol in the IoT Developer Guide. For more information about messaging costs, see IoT Core pricing - Messaging.
|
|
44
60
|
*/
|
|
45
61
|
publish(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
46
62
|
/**
|
|
47
|
-
* Updates the shadow for the specified thing. For more information, see UpdateThingShadow in the
|
|
63
|
+
* Updates the shadow for the specified thing. Requires permission to access the UpdateThingShadow action. For more information, see UpdateThingShadow in the IoT Developer Guide.
|
|
48
64
|
*/
|
|
49
65
|
updateThingShadow(params: IotData.Types.UpdateThingShadowRequest, callback?: (err: AWSError, data: IotData.Types.UpdateThingShadowResponse) => void): Request<IotData.Types.UpdateThingShadowResponse, AWSError>;
|
|
50
66
|
/**
|
|
51
|
-
* Updates the shadow for the specified thing. For more information, see UpdateThingShadow in the
|
|
67
|
+
* Updates the shadow for the specified thing. Requires permission to access the UpdateThingShadow action. For more information, see UpdateThingShadow in the IoT Developer Guide.
|
|
52
68
|
*/
|
|
53
69
|
updateThingShadow(callback?: (err: AWSError, data: IotData.Types.UpdateThingShadowResponse) => void): Request<IotData.Types.UpdateThingShadowResponse, AWSError>;
|
|
54
70
|
}
|
|
@@ -69,6 +85,30 @@ declare namespace IotData {
|
|
|
69
85
|
*/
|
|
70
86
|
payload: JsonDocument;
|
|
71
87
|
}
|
|
88
|
+
export interface GetRetainedMessageRequest {
|
|
89
|
+
/**
|
|
90
|
+
* The topic name of the retained message to retrieve.
|
|
91
|
+
*/
|
|
92
|
+
topic: Topic;
|
|
93
|
+
}
|
|
94
|
+
export interface GetRetainedMessageResponse {
|
|
95
|
+
/**
|
|
96
|
+
* The topic name to which the retained message was published.
|
|
97
|
+
*/
|
|
98
|
+
topic?: Topic;
|
|
99
|
+
/**
|
|
100
|
+
* The Base64-encoded message payload of the retained message body.
|
|
101
|
+
*/
|
|
102
|
+
payload?: Payload;
|
|
103
|
+
/**
|
|
104
|
+
* The quality of service (QoS) level used to publish the retained message.
|
|
105
|
+
*/
|
|
106
|
+
qos?: Qos;
|
|
107
|
+
/**
|
|
108
|
+
* The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
|
|
109
|
+
*/
|
|
110
|
+
lastModifiedTime?: Timestamp;
|
|
111
|
+
}
|
|
72
112
|
export interface GetThingShadowRequest {
|
|
73
113
|
/**
|
|
74
114
|
* The name of the thing.
|
|
@@ -106,18 +146,40 @@ declare namespace IotData {
|
|
|
106
146
|
*/
|
|
107
147
|
results?: NamedShadowList;
|
|
108
148
|
/**
|
|
109
|
-
* The token
|
|
149
|
+
* The token to use to get the next set of results, or null if there are no additional results.
|
|
110
150
|
*/
|
|
111
151
|
nextToken?: NextToken;
|
|
112
152
|
/**
|
|
113
|
-
* The Epoch date and time the response was generated by
|
|
153
|
+
* The Epoch date and time the response was generated by IoT.
|
|
114
154
|
*/
|
|
115
155
|
timestamp?: Timestamp;
|
|
116
156
|
}
|
|
157
|
+
export interface ListRetainedMessagesRequest {
|
|
158
|
+
/**
|
|
159
|
+
* To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.
|
|
160
|
+
*/
|
|
161
|
+
nextToken?: NextToken;
|
|
162
|
+
/**
|
|
163
|
+
* The maximum number of results to return at one time.
|
|
164
|
+
*/
|
|
165
|
+
maxResults?: MaxResults;
|
|
166
|
+
}
|
|
167
|
+
export interface ListRetainedMessagesResponse {
|
|
168
|
+
/**
|
|
169
|
+
* A summary list the account's retained messages. The information returned doesn't include the message payloads of the retained messages.
|
|
170
|
+
*/
|
|
171
|
+
retainedTopics?: RetainedMessageList;
|
|
172
|
+
/**
|
|
173
|
+
* The token for the next set of results, or null if there are no additional results.
|
|
174
|
+
*/
|
|
175
|
+
nextToken?: NextToken;
|
|
176
|
+
}
|
|
177
|
+
export type MaxResults = number;
|
|
117
178
|
export type NamedShadowList = ShadowName[];
|
|
118
179
|
export type NextToken = string;
|
|
119
180
|
export type PageSize = number;
|
|
120
181
|
export type Payload = Buffer|Uint8Array|Blob|string;
|
|
182
|
+
export type PayloadSize = number;
|
|
121
183
|
export interface PublishRequest {
|
|
122
184
|
/**
|
|
123
185
|
* The name of the MQTT topic.
|
|
@@ -128,11 +190,35 @@ declare namespace IotData {
|
|
|
128
190
|
*/
|
|
129
191
|
qos?: Qos;
|
|
130
192
|
/**
|
|
131
|
-
*
|
|
193
|
+
* A Boolean value that determines whether to set the RETAIN flag when the message is published. Setting the RETAIN flag causes the message to be retained and sent to new subscribers to the topic. Valid values: true | false Default value: false
|
|
194
|
+
*/
|
|
195
|
+
retain?: Retain;
|
|
196
|
+
/**
|
|
197
|
+
* The message body. MQTT accepts text, binary, and empty (null) message payloads. Publishing an empty (null) payload with retain = true deletes the retained message identified by topic from IoT Core.
|
|
132
198
|
*/
|
|
133
199
|
payload?: Payload;
|
|
134
200
|
}
|
|
135
201
|
export type Qos = number;
|
|
202
|
+
export type Retain = boolean;
|
|
203
|
+
export type RetainedMessageList = RetainedMessageSummary[];
|
|
204
|
+
export interface RetainedMessageSummary {
|
|
205
|
+
/**
|
|
206
|
+
* The topic name to which the retained message was published.
|
|
207
|
+
*/
|
|
208
|
+
topic?: Topic;
|
|
209
|
+
/**
|
|
210
|
+
* The size of the retained message's payload in bytes.
|
|
211
|
+
*/
|
|
212
|
+
payloadSize?: PayloadSize;
|
|
213
|
+
/**
|
|
214
|
+
* The quality of service (QoS) level used to publish the retained message.
|
|
215
|
+
*/
|
|
216
|
+
qos?: Qos;
|
|
217
|
+
/**
|
|
218
|
+
* The Epoch date and time, in milliseconds, when the retained message was stored by IoT.
|
|
219
|
+
*/
|
|
220
|
+
lastModifiedTime?: Timestamp;
|
|
221
|
+
}
|
|
136
222
|
export type ShadowName = string;
|
|
137
223
|
export type ThingName = string;
|
|
138
224
|
export type Timestamp = number;
|
package/clients/iotsitewise.d.ts
CHANGED
|
@@ -285,11 +285,11 @@ declare class IoTSiteWise extends Service {
|
|
|
285
285
|
*/
|
|
286
286
|
getAssetPropertyValueHistory(callback?: (err: AWSError, data: IoTSiteWise.Types.GetAssetPropertyValueHistoryResponse) => void): Request<IoTSiteWise.Types.GetAssetPropertyValueHistoryResponse, AWSError>;
|
|
287
287
|
/**
|
|
288
|
-
* Get interpolated values for an asset property for a specified time interval, during a period of time. For example, you can use
|
|
288
|
+
* Get interpolated values for an asset property for a specified time interval, during a period of time. If your time series is missing data points during the specified time interval, you can use interpolation to estimate the missing data. For example, you can use this operation to return the interpolated temperature values for a wind turbine every 24 hours over a duration of 7 days. To identify an asset property, you must specify one of the following: The assetId and propertyId of an asset property. A propertyAlias, which is a data stream alias (for example, /company/windfarm/3/turbine/7/temperature). To define an asset property's alias, see UpdateAssetProperty.
|
|
289
289
|
*/
|
|
290
290
|
getInterpolatedAssetPropertyValues(params: IoTSiteWise.Types.GetInterpolatedAssetPropertyValuesRequest, callback?: (err: AWSError, data: IoTSiteWise.Types.GetInterpolatedAssetPropertyValuesResponse) => void): Request<IoTSiteWise.Types.GetInterpolatedAssetPropertyValuesResponse, AWSError>;
|
|
291
291
|
/**
|
|
292
|
-
* Get interpolated values for an asset property for a specified time interval, during a period of time. For example, you can use
|
|
292
|
+
* Get interpolated values for an asset property for a specified time interval, during a period of time. If your time series is missing data points during the specified time interval, you can use interpolation to estimate the missing data. For example, you can use this operation to return the interpolated temperature values for a wind turbine every 24 hours over a duration of 7 days. To identify an asset property, you must specify one of the following: The assetId and propertyId of an asset property. A propertyAlias, which is a data stream alias (for example, /company/windfarm/3/turbine/7/temperature). To define an asset property's alias, see UpdateAssetProperty.
|
|
293
293
|
*/
|
|
294
294
|
getInterpolatedAssetPropertyValues(callback?: (err: AWSError, data: IoTSiteWise.Types.GetInterpolatedAssetPropertyValuesResponse) => void): Request<IoTSiteWise.Types.GetInterpolatedAssetPropertyValuesResponse, AWSError>;
|
|
295
295
|
/**
|
|
@@ -2210,7 +2210,7 @@ declare namespace IoTSiteWise {
|
|
|
2210
2210
|
*/
|
|
2211
2211
|
maxResults?: MaxInterpolatedResults;
|
|
2212
2212
|
/**
|
|
2213
|
-
* The interpolation type. Valid values: LINEAR_INTERPOLATION | LOCF_INTERPOLATION
|
|
2213
|
+
* The interpolation type. Valid values: LINEAR_INTERPOLATION | LOCF_INTERPOLATION LINEAR_INTERPOLATION – Estimates missing data using linear interpolation. For example, you can use this operation to return the interpolated temperature values for a wind turbine every 24 hours over a duration of 7 days. If the interpolation starts on July 1, 2021, at 9 AM, IoT SiteWise returns the first interpolated value on July 2, 2021, at 9 AM, the second interpolated value on July 3, 2021, at 9 AM, and so on. LOCF_INTERPOLATION – Estimates missing data using last observation carried forward interpolation If no data point is found for an interval, IoT SiteWise returns the last observed data point for the previous interval and carries forward this interpolated value until a new data point is found. For example, you can get the state of an on-off valve every 24 hours over a duration of 7 days. If the interpolation starts on July 1, 2021, at 9 AM, IoT SiteWise returns the last observed data point between July 1, 2021, at 9 AM and July 2, 2021, at 9 AM as the first interpolated value. If no data point is found after 9 AM on July 2, 2021, IoT SiteWise uses the same interpolated value for the rest of the days.
|
|
2214
2214
|
*/
|
|
2215
2215
|
type: InterpolationType;
|
|
2216
2216
|
/**
|
|
@@ -995,7 +995,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
995
995
|
*/
|
|
996
996
|
Encryption?: CmafEncryptionSettings;
|
|
997
997
|
/**
|
|
998
|
-
*
|
|
998
|
+
* Specify the length, in whole seconds, of the mp4 fragments. When you don't specify a value, MediaConvert defaults to 2. Related setting: Use Fragment length control (FragmentLengthControl) to specify whether the encoder enforces this value strictly.
|
|
999
999
|
*/
|
|
1000
1000
|
FragmentLength?: __integerMin1Max2147483647;
|
|
1001
1001
|
/**
|
|
@@ -1031,9 +1031,13 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
1031
1031
|
*/
|
|
1032
1032
|
SegmentControl?: CmafSegmentControl;
|
|
1033
1033
|
/**
|
|
1034
|
-
*
|
|
1034
|
+
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 10. Related settings: Use Segment length control (SegmentLengthControl) to specify whether the encoder enforces this value strictly. Use Segment control (CmafSegmentControl) to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
1035
1035
|
*/
|
|
1036
1036
|
SegmentLength?: __integerMin1Max2147483647;
|
|
1037
|
+
/**
|
|
1038
|
+
* Specify how you want MediaConvert to determine the segment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Segment length (SegmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
1039
|
+
*/
|
|
1040
|
+
SegmentLengthControl?: CmafSegmentLengthControl;
|
|
1037
1041
|
/**
|
|
1038
1042
|
* Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
|
|
1039
1043
|
*/
|
|
@@ -1063,6 +1067,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
1063
1067
|
export type CmafMpdProfile = "MAIN_PROFILE"|"ON_DEMAND_PROFILE"|string;
|
|
1064
1068
|
export type CmafPtsOffsetHandlingForBFrames = "ZERO_BASED"|"MATCH_INITIAL_PTS"|string;
|
|
1065
1069
|
export type CmafSegmentControl = "SINGLE_FILE"|"SEGMENTED_FILES"|string;
|
|
1070
|
+
export type CmafSegmentLengthControl = "EXACT"|"GOP_MULTIPLE"|string;
|
|
1066
1071
|
export type CmafStreamInfResolution = "INCLUDE"|"EXCLUDE"|string;
|
|
1067
1072
|
export type CmafTargetDurationCompatibilityMode = "LEGACY"|"SPEC_COMPLIANT"|string;
|
|
1068
1073
|
export type CmafWriteDASHManifest = "DISABLED"|"ENABLED"|string;
|
|
@@ -1430,9 +1435,13 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
1430
1435
|
*/
|
|
1431
1436
|
SegmentControl?: DashIsoSegmentControl;
|
|
1432
1437
|
/**
|
|
1433
|
-
*
|
|
1438
|
+
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 30. Related settings: Use Segment length control (SegmentLengthControl) to specify whether the encoder enforces this value strictly. Use Segment control (DashIsoSegmentControl) to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
1434
1439
|
*/
|
|
1435
1440
|
SegmentLength?: __integerMin1Max2147483647;
|
|
1441
|
+
/**
|
|
1442
|
+
* Specify how you want MediaConvert to determine the segment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Segment length (SegmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
1443
|
+
*/
|
|
1444
|
+
SegmentLengthControl?: DashIsoSegmentLengthControl;
|
|
1436
1445
|
/**
|
|
1437
1446
|
* If you get an HTTP error in the 400 range when you play back your DASH output, enable this setting and run your transcoding job again. When you enable this setting, the service writes precise segment durations in the DASH manifest. The segment duration information appears inside the SegmentTimeline element, inside SegmentTemplate at the Representation level. When you don't enable this setting, the service writes approximate segment durations in your DASH manifest.
|
|
1438
1447
|
*/
|
|
@@ -1444,6 +1453,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
1444
1453
|
export type DashIsoPlaybackDeviceCompatibility = "CENC_V1"|"UNENCRYPTED_SEI"|string;
|
|
1445
1454
|
export type DashIsoPtsOffsetHandlingForBFrames = "ZERO_BASED"|"MATCH_INITIAL_PTS"|string;
|
|
1446
1455
|
export type DashIsoSegmentControl = "SINGLE_FILE"|"SEGMENTED_FILES"|string;
|
|
1456
|
+
export type DashIsoSegmentLengthControl = "EXACT"|"GOP_MULTIPLE"|string;
|
|
1447
1457
|
export type DashIsoWriteSegmentTimelineInRepresentation = "ENABLED"|"DISABLED"|string;
|
|
1448
1458
|
export type DecryptionMode = "AES_CTR"|"AES_CBC"|"AES_GCM"|string;
|
|
1449
1459
|
export type DeinterlaceAlgorithm = "INTERPOLATE"|"INTERPOLATE_TICKER"|"BLEND"|"BLEND_TICKER"|string;
|
|
@@ -2063,7 +2073,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2063
2073
|
export type H264CodecProfile = "BASELINE"|"HIGH"|"HIGH_10BIT"|"HIGH_422"|"HIGH_422_10BIT"|"MAIN"|string;
|
|
2064
2074
|
export type H264DynamicSubGop = "ADAPTIVE"|"STATIC"|string;
|
|
2065
2075
|
export type H264EntropyEncoding = "CABAC"|"CAVLC"|string;
|
|
2066
|
-
export type H264FieldEncoding = "PAFF"|"FORCE_FIELD"|string;
|
|
2076
|
+
export type H264FieldEncoding = "PAFF"|"FORCE_FIELD"|"MBAFF"|string;
|
|
2067
2077
|
export type H264FlickerAdaptiveQuantization = "DISABLED"|"ENABLED"|string;
|
|
2068
2078
|
export type H264FramerateControl = "INITIALIZE_FROM_SOURCE"|"SPECIFIED"|string;
|
|
2069
2079
|
export type H264FramerateConversionAlgorithm = "DUPLICATE_DROP"|"INTERPOLATE"|"FRAMEFORMER"|string;
|
|
@@ -2116,7 +2126,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2116
2126
|
*/
|
|
2117
2127
|
EntropyEncoding?: H264EntropyEncoding;
|
|
2118
2128
|
/**
|
|
2119
|
-
* Keep the default value, PAFF, to have MediaConvert use PAFF encoding for interlaced outputs. Choose Force field (FORCE_FIELD) to disable PAFF encoding and create separate interlaced fields.
|
|
2129
|
+
* The video encoding method for your MPEG-4 AVC output. Keep the default value, PAFF, to have MediaConvert use PAFF encoding for interlaced outputs. Choose Force field (FORCE_FIELD) to disable PAFF encoding and create separate interlaced fields. Choose MBAFF to disable PAFF and have MediaConvert use MBAFF encoding for interlaced outputs.
|
|
2120
2130
|
*/
|
|
2121
2131
|
FieldEncoding?: H264FieldEncoding;
|
|
2122
2132
|
/**
|
|
@@ -2176,7 +2186,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2176
2186
|
*/
|
|
2177
2187
|
MinIInterval?: __integerMin0Max30;
|
|
2178
2188
|
/**
|
|
2179
|
-
*
|
|
2189
|
+
* Specify the number of B-frames that MediaConvert puts between reference frames in this output. Valid values are whole numbers from 0 through 7. When you don't specify a value, MediaConvert defaults to 2.
|
|
2180
2190
|
*/
|
|
2181
2191
|
NumberBFramesBetweenReferenceFrames?: __integerMin0Max7;
|
|
2182
2192
|
/**
|
|
@@ -2371,7 +2381,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2371
2381
|
*/
|
|
2372
2382
|
MinIInterval?: __integerMin0Max30;
|
|
2373
2383
|
/**
|
|
2374
|
-
*
|
|
2384
|
+
* Specify the number of B-frames that MediaConvert puts between reference frames in this output. Valid values are whole numbers from 0 through 7. When you don't specify a value, MediaConvert defaults to 2.
|
|
2375
2385
|
*/
|
|
2376
2386
|
NumberBFramesBetweenReferenceFrames?: __integerMin0Max7;
|
|
2377
2387
|
/**
|
|
@@ -2673,9 +2683,13 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2673
2683
|
*/
|
|
2674
2684
|
SegmentControl?: HlsSegmentControl;
|
|
2675
2685
|
/**
|
|
2676
|
-
*
|
|
2686
|
+
* Specify the length, in whole seconds, of each segment. When you don't specify a value, MediaConvert defaults to 10. Related settings: Use Segment length control (SegmentLengthControl) to specify whether the encoder enforces this value strictly. Use Segment control (HlsSegmentControl) to specify whether MediaConvert creates separate segment files or one content file that has metadata to mark the segment boundaries.
|
|
2677
2687
|
*/
|
|
2678
2688
|
SegmentLength?: __integerMin1Max2147483647;
|
|
2689
|
+
/**
|
|
2690
|
+
* Specify how you want MediaConvert to determine the segment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Segment length (SegmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
2691
|
+
*/
|
|
2692
|
+
SegmentLengthControl?: HlsSegmentLengthControl;
|
|
2679
2693
|
/**
|
|
2680
2694
|
* Number of segments to write to a subdirectory before starting a new one. directoryStructure must be SINGLE_DIRECTORY for this setting to have an effect.
|
|
2681
2695
|
*/
|
|
@@ -2725,6 +2739,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
2725
2739
|
RenditionName?: __string;
|
|
2726
2740
|
}
|
|
2727
2741
|
export type HlsSegmentControl = "SINGLE_FILE"|"SEGMENTED_FILES"|string;
|
|
2742
|
+
export type HlsSegmentLengthControl = "EXACT"|"GOP_MULTIPLE"|string;
|
|
2728
2743
|
export interface HlsSettings {
|
|
2729
2744
|
/**
|
|
2730
2745
|
* Specifies the group to which the audio rendition belongs.
|
|
@@ -3492,6 +3507,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3492
3507
|
export type M2tsAudioBufferModel = "DVB"|"ATSC"|string;
|
|
3493
3508
|
export type M2tsAudioDuration = "DEFAULT_CODEC_DURATION"|"MATCH_VIDEO_DURATION"|string;
|
|
3494
3509
|
export type M2tsBufferModel = "MULTIPLEX"|"NONE"|string;
|
|
3510
|
+
export type M2tsDataPtsControl = "AUTO"|"ALIGN_TO_VIDEO"|string;
|
|
3495
3511
|
export type M2tsEbpAudioInterval = "VIDEO_AND_FIXED_INTERVALS"|"VIDEO_INTERVAL"|string;
|
|
3496
3512
|
export type M2tsEbpPlacement = "VIDEO_AND_AUDIO_PIDS"|"VIDEO_PID"|string;
|
|
3497
3513
|
export type M2tsEsRateInPes = "INCLUDE"|"EXCLUDE"|string;
|
|
@@ -3533,6 +3549,10 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3533
3549
|
* Controls what buffer model to use for accurate interleaving. If set to MULTIPLEX, use multiplex buffer model. If set to NONE, this can lead to lower latency, but low-memory devices may not be able to play back the stream without interruptions.
|
|
3534
3550
|
*/
|
|
3535
3551
|
BufferModel?: M2tsBufferModel;
|
|
3552
|
+
/**
|
|
3553
|
+
* If you select ALIGN_TO_VIDEO, MediaConvert writes captions and data packets with Presentation Timestamp (PTS) values greater than or equal to the first video packet PTS (MediaConvert drops captions and data packets with lesser PTS values). Keep the default value (AUTO) to allow all PTS values.
|
|
3554
|
+
*/
|
|
3555
|
+
DataPTSControl?: M2tsDataPtsControl;
|
|
3536
3556
|
/**
|
|
3537
3557
|
* Use these settings to insert a DVB Network Information Table (NIT) in the transport stream of this output. When you work directly in your JSON job specification, include this object only when your job has a transport stream output and the container settings contain the object M2tsSettings.
|
|
3538
3558
|
*/
|
|
@@ -3659,6 +3679,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3659
3679
|
VideoPid?: __integerMin32Max8182;
|
|
3660
3680
|
}
|
|
3661
3681
|
export type M3u8AudioDuration = "DEFAULT_CODEC_DURATION"|"MATCH_VIDEO_DURATION"|string;
|
|
3682
|
+
export type M3u8DataPtsControl = "AUTO"|"ALIGN_TO_VIDEO"|string;
|
|
3662
3683
|
export type M3u8NielsenId3 = "INSERT"|"NONE"|string;
|
|
3663
3684
|
export type M3u8PcrControl = "PCR_EVERY_PES_PACKET"|"CONFIGURED_PCR_PERIOD"|string;
|
|
3664
3685
|
export type M3u8Scte35Source = "PASSTHROUGH"|"NONE"|string;
|
|
@@ -3675,6 +3696,10 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3675
3696
|
* Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation.
|
|
3676
3697
|
*/
|
|
3677
3698
|
AudioPids?: __listOf__integerMin32Max8182;
|
|
3699
|
+
/**
|
|
3700
|
+
* If you select ALIGN_TO_VIDEO, MediaConvert writes captions and data packets with Presentation Timestamp (PTS) values greater than or equal to the first video packet PTS (MediaConvert drops captions and data packets with lesser PTS values). Keep the default value (AUTO) to allow all PTS values.
|
|
3701
|
+
*/
|
|
3702
|
+
DataPTSControl?: M3u8DataPtsControl;
|
|
3678
3703
|
/**
|
|
3679
3704
|
* Specify the maximum time, in milliseconds, between Program Clock References (PCRs) inserted into the transport stream.
|
|
3680
3705
|
*/
|
|
@@ -3960,11 +3985,11 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3960
3985
|
*/
|
|
3961
3986
|
GopClosedCadence?: __integerMin0Max2147483647;
|
|
3962
3987
|
/**
|
|
3963
|
-
*
|
|
3988
|
+
* Specify the interval between keyframes, in seconds or frames, for this output. Default: 12 Related settings: When you specify the GOP size in seconds, set GOP mode control (GopSizeUnits) to Specified, seconds (SECONDS). The default value for GOP mode control (GopSizeUnits) is Frames (FRAMES).
|
|
3964
3989
|
*/
|
|
3965
3990
|
GopSize?: __doubleMin0;
|
|
3966
3991
|
/**
|
|
3967
|
-
*
|
|
3992
|
+
* Specify the units for GOP size (GopSize). If you don't specify a value here, by default the encoder measures GOP size in frames.
|
|
3968
3993
|
*/
|
|
3969
3994
|
GopSizeUnits?: Mpeg2GopSizeUnits;
|
|
3970
3995
|
/**
|
|
@@ -3992,7 +4017,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
3992
4017
|
*/
|
|
3993
4018
|
MinIInterval?: __integerMin0Max30;
|
|
3994
4019
|
/**
|
|
3995
|
-
*
|
|
4020
|
+
* Specify the number of B-frames that MediaConvert puts between reference frames in this output. Valid values are whole numbers from 0 through 7. When you don't specify a value, MediaConvert defaults to 2.
|
|
3996
4021
|
*/
|
|
3997
4022
|
NumberBFramesBetweenReferenceFrames?: __integerMin0Max7;
|
|
3998
4023
|
/**
|
|
@@ -4070,6 +4095,7 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
4070
4095
|
*/
|
|
4071
4096
|
SpekeKeyProvider?: SpekeKeyProvider;
|
|
4072
4097
|
}
|
|
4098
|
+
export type MsSmoothFragmentLengthControl = "EXACT"|"GOP_MULTIPLE"|string;
|
|
4073
4099
|
export interface MsSmoothGroupSettings {
|
|
4074
4100
|
/**
|
|
4075
4101
|
* By default, the service creates one .ism Microsoft Smooth Streaming manifest for each Microsoft Smooth Streaming output group in your job. This default manifest references every output in the output group. To create additional manifests that reference a subset of the outputs in the output group, specify a list of them here.
|
|
@@ -4092,9 +4118,13 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
4092
4118
|
*/
|
|
4093
4119
|
Encryption?: MsSmoothEncryptionSettings;
|
|
4094
4120
|
/**
|
|
4095
|
-
*
|
|
4121
|
+
* Specify how you want MediaConvert to determine the fragment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Fragment length (FragmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
4096
4122
|
*/
|
|
4097
4123
|
FragmentLength?: __integerMin1Max2147483647;
|
|
4124
|
+
/**
|
|
4125
|
+
* Specify how you want MediaConvert to determine the fragment length. Choose Exact (EXACT) to have the encoder use the exact length that you specify with the setting Fragment length (FragmentLength). This might result in extra I-frames. Choose Multiple of GOP (GOP_MULTIPLE) to have the encoder round up the segment lengths to match the next GOP boundary.
|
|
4126
|
+
*/
|
|
4127
|
+
FragmentLengthControl?: MsSmoothFragmentLengthControl;
|
|
4098
4128
|
/**
|
|
4099
4129
|
* Use Manifest encoding (MsSmoothManifestEncoding) to specify the encoding format for the server and client manifest. Valid options are utf8 and utf16.
|
|
4100
4130
|
*/
|
|
@@ -4685,6 +4715,10 @@ All burn-in and DVB-Sub font settings must match.
|
|
|
4685
4715
|
* Specify how you want your data keys managed. AWS uses data keys to encrypt your content. AWS also encrypts the data keys themselves, using a customer master key (CMK), and then stores the encrypted data keys alongside your encrypted content. Use this setting to specify which AWS service manages the CMK. For simplest set up, choose Amazon S3 (SERVER_SIDE_ENCRYPTION_S3). If you want your master key to be managed by AWS Key Management Service (KMS), choose AWS KMS (SERVER_SIDE_ENCRYPTION_KMS). By default, when you choose AWS KMS, KMS uses the AWS managed customer master key (CMK) associated with Amazon S3 to encrypt your data keys. You can optionally choose to specify a different, customer managed CMK. Do so by specifying the Amazon Resource Name (ARN) of the key for the setting KMS ARN (kmsKeyArn).
|
|
4686
4716
|
*/
|
|
4687
4717
|
EncryptionType?: S3ServerSideEncryptionType;
|
|
4718
|
+
/**
|
|
4719
|
+
* Optionally, specify the encryption context that you want to use alongside your KMS key. AWS KMS uses this encryption context as additional authenticated data (AAD) to support authenticated encryption. This value must be a base64-encoded UTF-8 string holding JSON which represents a string-string map. To use this setting, you must also set Server-side encryption (S3ServerSideEncryptionType) to AWS KMS (SERVER_SIDE_ENCRYPTION_KMS). For more information about encryption context, see: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context.
|
|
4720
|
+
*/
|
|
4721
|
+
KmsEncryptionContext?: __stringPatternAZaZ0902;
|
|
4688
4722
|
/**
|
|
4689
4723
|
* Optionally, specify the customer master key (CMK) that you want to use to encrypt the data key that AWS uses to encrypt your output content. Enter the Amazon Resource Name (ARN) of the CMK. To use this setting, you must also set Server-side encryption (S3ServerSideEncryptionType) to AWS KMS (SERVER_SIDE_ENCRYPTION_KMS). If you set Server-side encryption to AWS KMS but don't specify a CMK here, AWS uses the AWS managed CMK associated with Amazon S3.
|
|
4690
4724
|
*/
|
package/clients/polly.d.ts
CHANGED
|
@@ -14,11 +14,11 @@ declare class Polly extends PollyCustomizations {
|
|
|
14
14
|
constructor(options?: Polly.Types.ClientConfiguration)
|
|
15
15
|
config: Config & Polly.Types.ClientConfiguration;
|
|
16
16
|
/**
|
|
17
|
-
* Deletes the specified pronunciation lexicon stored in an
|
|
17
|
+
* Deletes the specified pronunciation lexicon stored in an Amazon Web Services Region. A lexicon which has been deleted is not available for speech synthesis, nor is it possible to retrieve it using either the GetLexicon or ListLexicon APIs. For more information, see Managing Lexicons.
|
|
18
18
|
*/
|
|
19
19
|
deleteLexicon(params: Polly.Types.DeleteLexiconInput, callback?: (err: AWSError, data: Polly.Types.DeleteLexiconOutput) => void): Request<Polly.Types.DeleteLexiconOutput, AWSError>;
|
|
20
20
|
/**
|
|
21
|
-
* Deletes the specified pronunciation lexicon stored in an
|
|
21
|
+
* Deletes the specified pronunciation lexicon stored in an Amazon Web Services Region. A lexicon which has been deleted is not available for speech synthesis, nor is it possible to retrieve it using either the GetLexicon or ListLexicon APIs. For more information, see Managing Lexicons.
|
|
22
22
|
*/
|
|
23
23
|
deleteLexicon(callback?: (err: AWSError, data: Polly.Types.DeleteLexiconOutput) => void): Request<Polly.Types.DeleteLexiconOutput, AWSError>;
|
|
24
24
|
/**
|
|
@@ -30,11 +30,11 @@ declare class Polly extends PollyCustomizations {
|
|
|
30
30
|
*/
|
|
31
31
|
describeVoices(callback?: (err: AWSError, data: Polly.Types.DescribeVoicesOutput) => void): Request<Polly.Types.DescribeVoicesOutput, AWSError>;
|
|
32
32
|
/**
|
|
33
|
-
* Returns the content of the specified pronunciation lexicon stored in an
|
|
33
|
+
* Returns the content of the specified pronunciation lexicon stored in an Amazon Web Services Region. For more information, see Managing Lexicons.
|
|
34
34
|
*/
|
|
35
35
|
getLexicon(params: Polly.Types.GetLexiconInput, callback?: (err: AWSError, data: Polly.Types.GetLexiconOutput) => void): Request<Polly.Types.GetLexiconOutput, AWSError>;
|
|
36
36
|
/**
|
|
37
|
-
* Returns the content of the specified pronunciation lexicon stored in an
|
|
37
|
+
* Returns the content of the specified pronunciation lexicon stored in an Amazon Web Services Region. For more information, see Managing Lexicons.
|
|
38
38
|
*/
|
|
39
39
|
getLexicon(callback?: (err: AWSError, data: Polly.Types.GetLexiconOutput) => void): Request<Polly.Types.GetLexiconOutput, AWSError>;
|
|
40
40
|
/**
|
|
@@ -46,11 +46,11 @@ declare class Polly extends PollyCustomizations {
|
|
|
46
46
|
*/
|
|
47
47
|
getSpeechSynthesisTask(callback?: (err: AWSError, data: Polly.Types.GetSpeechSynthesisTaskOutput) => void): Request<Polly.Types.GetSpeechSynthesisTaskOutput, AWSError>;
|
|
48
48
|
/**
|
|
49
|
-
* Returns a list of pronunciation lexicons stored in an
|
|
49
|
+
* Returns a list of pronunciation lexicons stored in an Amazon Web Services Region. For more information, see Managing Lexicons.
|
|
50
50
|
*/
|
|
51
51
|
listLexicons(params: Polly.Types.ListLexiconsInput, callback?: (err: AWSError, data: Polly.Types.ListLexiconsOutput) => void): Request<Polly.Types.ListLexiconsOutput, AWSError>;
|
|
52
52
|
/**
|
|
53
|
-
* Returns a list of pronunciation lexicons stored in an
|
|
53
|
+
* Returns a list of pronunciation lexicons stored in an Amazon Web Services Region. For more information, see Managing Lexicons.
|
|
54
54
|
*/
|
|
55
55
|
listLexicons(callback?: (err: AWSError, data: Polly.Types.ListLexiconsOutput) => void): Request<Polly.Types.ListLexiconsOutput, AWSError>;
|
|
56
56
|
/**
|
|
@@ -62,19 +62,19 @@ declare class Polly extends PollyCustomizations {
|
|
|
62
62
|
*/
|
|
63
63
|
listSpeechSynthesisTasks(callback?: (err: AWSError, data: Polly.Types.ListSpeechSynthesisTasksOutput) => void): Request<Polly.Types.ListSpeechSynthesisTasksOutput, AWSError>;
|
|
64
64
|
/**
|
|
65
|
-
* Stores a pronunciation lexicon in an
|
|
65
|
+
* Stores a pronunciation lexicon in an Amazon Web Services Region. If a lexicon with the same name already exists in the region, it is overwritten by the new lexicon. Lexicon operations have eventual consistency, therefore, it might take some time before the lexicon is available to the SynthesizeSpeech operation. For more information, see Managing Lexicons.
|
|
66
66
|
*/
|
|
67
67
|
putLexicon(params: Polly.Types.PutLexiconInput, callback?: (err: AWSError, data: Polly.Types.PutLexiconOutput) => void): Request<Polly.Types.PutLexiconOutput, AWSError>;
|
|
68
68
|
/**
|
|
69
|
-
* Stores a pronunciation lexicon in an
|
|
69
|
+
* Stores a pronunciation lexicon in an Amazon Web Services Region. If a lexicon with the same name already exists in the region, it is overwritten by the new lexicon. Lexicon operations have eventual consistency, therefore, it might take some time before the lexicon is available to the SynthesizeSpeech operation. For more information, see Managing Lexicons.
|
|
70
70
|
*/
|
|
71
71
|
putLexicon(callback?: (err: AWSError, data: Polly.Types.PutLexiconOutput) => void): Request<Polly.Types.PutLexiconOutput, AWSError>;
|
|
72
72
|
/**
|
|
73
|
-
* Allows the creation of an asynchronous synthesis task, by starting a new SpeechSynthesisTask. This operation requires all the standard information needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created, this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status.
|
|
73
|
+
* Allows the creation of an asynchronous synthesis task, by starting a new SpeechSynthesisTask. This operation requires all the standard information needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created, this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status. The SpeechSynthesisTask object is available for 72 hours after starting the asynchronous synthesis task.
|
|
74
74
|
*/
|
|
75
75
|
startSpeechSynthesisTask(params: Polly.Types.StartSpeechSynthesisTaskInput, callback?: (err: AWSError, data: Polly.Types.StartSpeechSynthesisTaskOutput) => void): Request<Polly.Types.StartSpeechSynthesisTaskOutput, AWSError>;
|
|
76
76
|
/**
|
|
77
|
-
* Allows the creation of an asynchronous synthesis task, by starting a new SpeechSynthesisTask. This operation requires all the standard information needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created, this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status.
|
|
77
|
+
* Allows the creation of an asynchronous synthesis task, by starting a new SpeechSynthesisTask. This operation requires all the standard information needed for speech synthesis, plus the name of an Amazon S3 bucket for the service to store the output of the synthesis task and two optional parameters (OutputS3KeyPrefix and SnsTopicArn). Once the synthesis task is created, this operation will return a SpeechSynthesisTask object, which will include an identifier of this task as well as the current status. The SpeechSynthesisTask object is available for 72 hours after starting the asynchronous synthesis task.
|
|
78
78
|
*/
|
|
79
79
|
startSpeechSynthesisTask(callback?: (err: AWSError, data: Polly.Types.StartSpeechSynthesisTaskOutput) => void): Request<Polly.Types.StartSpeechSynthesisTaskOutput, AWSError>;
|
|
80
80
|
/**
|
|
@@ -162,7 +162,7 @@ declare namespace Polly {
|
|
|
162
162
|
SynthesisTask?: SynthesisTask;
|
|
163
163
|
}
|
|
164
164
|
export type IncludeAdditionalLanguageCodes = boolean;
|
|
165
|
-
export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|string;
|
|
165
|
+
export type LanguageCode = "arb"|"cmn-CN"|"cy-GB"|"da-DK"|"de-DE"|"en-AU"|"en-GB"|"en-GB-WLS"|"en-IN"|"en-US"|"es-ES"|"es-MX"|"es-US"|"fr-CA"|"fr-FR"|"is-IS"|"it-IT"|"ja-JP"|"hi-IN"|"ko-KR"|"nb-NO"|"nl-NL"|"pl-PL"|"pt-BR"|"pt-PT"|"ro-RO"|"ru-RU"|"sv-SE"|"tr-TR"|"en-NZ"|string;
|
|
166
166
|
export type LanguageCodeList = LanguageCode[];
|
|
167
167
|
export type LanguageName = string;
|
|
168
168
|
export type LastModified = Date;
|
|
@@ -288,7 +288,7 @@ declare namespace Polly {
|
|
|
288
288
|
*/
|
|
289
289
|
Engine?: Engine;
|
|
290
290
|
/**
|
|
291
|
-
* Optional language code for the Speech Synthesis request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly
|
|
291
|
+
* Optional language code for the Speech Synthesis request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly uses the default language of the bilingual voice. The default language for any voice is the one returned by the DescribeVoices operation for the LanguageCode parameter. For example, if no language code is specified, Aditi will use Indian English rather than Hindi.
|
|
292
292
|
*/
|
|
293
293
|
LanguageCode?: LanguageCode;
|
|
294
294
|
/**
|
|
@@ -396,7 +396,7 @@ declare namespace Polly {
|
|
|
396
396
|
*/
|
|
397
397
|
VoiceId?: VoiceId;
|
|
398
398
|
/**
|
|
399
|
-
* Optional language code for a synthesis task. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly
|
|
399
|
+
* Optional language code for a synthesis task. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly uses the default language of the bilingual voice. The default language for any voice is the one returned by the DescribeVoices operation for the LanguageCode parameter. For example, if no language code is specified, Aditi will use Indian English rather than Hindi.
|
|
400
400
|
*/
|
|
401
401
|
LanguageCode?: LanguageCode;
|
|
402
402
|
}
|
|
@@ -407,7 +407,7 @@ declare namespace Polly {
|
|
|
407
407
|
*/
|
|
408
408
|
Engine?: Engine;
|
|
409
409
|
/**
|
|
410
|
-
* Optional language code for the Synthesize Speech request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly
|
|
410
|
+
* Optional language code for the Synthesize Speech request. This is only necessary if using a bilingual voice, such as Aditi, which can be used for either Indian English (en-IN) or Hindi (hi-IN). If a bilingual voice is used and no language code is specified, Amazon Polly uses the default language of the bilingual voice. The default language for any voice is the one returned by the DescribeVoices operation for the LanguageCode parameter. For example, if no language code is specified, Aditi will use Indian English rather than Hindi.
|
|
411
411
|
*/
|
|
412
412
|
LanguageCode?: LanguageCode;
|
|
413
413
|
/**
|
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
|
488
488
|
*/
|
|
489
489
|
SupportedEngines?: EngineList;
|
|
490
490
|
}
|
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|string;
|
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|string;
|
|
492
492
|
export type VoiceList = Voice[];
|
|
493
493
|
export type VoiceName = string;
|
|
494
494
|
/**
|
package/clients/robomaker.d.ts
CHANGED
|
@@ -929,7 +929,7 @@ declare namespace RoboMaker {
|
|
|
929
929
|
*/
|
|
930
930
|
iamRole: IamRole;
|
|
931
931
|
/**
|
|
932
|
-
* The failure behavior the simulation job. Continue
|
|
932
|
+
* The failure behavior the simulation job. Continue Leaves the instance running for its maximum timeout duration after a 4XX error code. Fail Stop the simulation job and terminate the instance.
|
|
933
933
|
*/
|
|
934
934
|
failureBehavior?: FailureBehavior;
|
|
935
935
|
/**
|
|
@@ -2716,7 +2716,7 @@ declare namespace RoboMaker {
|
|
|
2716
2716
|
*/
|
|
2717
2717
|
lastUpdatedAt?: LastUpdatedAt;
|
|
2718
2718
|
/**
|
|
2719
|
-
* The failure behavior the simulation job. Continue
|
|
2719
|
+
* The failure behavior the simulation job. Continue Leaves the host running for its maximum timeout duration after a 4XX error code. Fail Stop the simulation job and terminate the instance.
|
|
2720
2720
|
*/
|
|
2721
2721
|
failureBehavior?: FailureBehavior;
|
|
2722
2722
|
/**
|
|
@@ -2826,7 +2826,7 @@ declare namespace RoboMaker {
|
|
|
2826
2826
|
*/
|
|
2827
2827
|
iamRole?: IamRole;
|
|
2828
2828
|
/**
|
|
2829
|
-
* The failure behavior the simulation job. Continue
|
|
2829
|
+
* The failure behavior the simulation job. Continue Leaves the host running for its maximum timeout duration after a 4XX error code. Fail Stop the simulation job and terminate the instance.
|
|
2830
2830
|
*/
|
|
2831
2831
|
failureBehavior?: FailureBehavior;
|
|
2832
2832
|
/**
|