cdk-docker-image-deployment 0.0.200 → 0.0.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +74 -41
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +314 -64
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +599 -8
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +162 -88
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +758 -44
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +35 -29
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +69 -61
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.examples.json +5 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +363 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1061 -880
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +25 -8
- package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +266 -11
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +696 -14
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +180 -107
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +364 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +29 -21
- package/node_modules/aws-sdk/clients/guardduty.d.ts +22 -13
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +379 -0
- package/node_modules/aws-sdk/clients/ivsrealtime.js +18 -0
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +219 -14
- package/node_modules/aws-sdk/clients/textract.d.ts +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +52 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +12 -12
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -0,0 +1,379 @@
|
|
|
1
|
+
import {Request} from '../lib/request';
|
|
2
|
+
import {Response} from '../lib/response';
|
|
3
|
+
import {AWSError} from '../lib/error';
|
|
4
|
+
import {Service} from '../lib/service';
|
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
|
7
|
+
interface Blob {}
|
|
8
|
+
declare class IVSRealTime extends Service {
|
|
9
|
+
/**
|
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
|
11
|
+
*/
|
|
12
|
+
constructor(options?: IVSRealTime.Types.ClientConfiguration)
|
|
13
|
+
config: Config & IVSRealTime.Types.ClientConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* Creates an additional token for a specified stage. This can be done after stage creation or when tokens expire. Tokens always are scoped to the stage for which they are created. Encryption keys are owned by Amazon IVS and never used directly by your application.
|
|
16
|
+
*/
|
|
17
|
+
createParticipantToken(params: IVSRealTime.Types.CreateParticipantTokenRequest, callback?: (err: AWSError, data: IVSRealTime.Types.CreateParticipantTokenResponse) => void): Request<IVSRealTime.Types.CreateParticipantTokenResponse, AWSError>;
|
|
18
|
+
/**
|
|
19
|
+
* Creates an additional token for a specified stage. This can be done after stage creation or when tokens expire. Tokens always are scoped to the stage for which they are created. Encryption keys are owned by Amazon IVS and never used directly by your application.
|
|
20
|
+
*/
|
|
21
|
+
createParticipantToken(callback?: (err: AWSError, data: IVSRealTime.Types.CreateParticipantTokenResponse) => void): Request<IVSRealTime.Types.CreateParticipantTokenResponse, AWSError>;
|
|
22
|
+
/**
|
|
23
|
+
* Creates a new stage (and optionally participant tokens).
|
|
24
|
+
*/
|
|
25
|
+
createStage(params: IVSRealTime.Types.CreateStageRequest, callback?: (err: AWSError, data: IVSRealTime.Types.CreateStageResponse) => void): Request<IVSRealTime.Types.CreateStageResponse, AWSError>;
|
|
26
|
+
/**
|
|
27
|
+
* Creates a new stage (and optionally participant tokens).
|
|
28
|
+
*/
|
|
29
|
+
createStage(callback?: (err: AWSError, data: IVSRealTime.Types.CreateStageResponse) => void): Request<IVSRealTime.Types.CreateStageResponse, AWSError>;
|
|
30
|
+
/**
|
|
31
|
+
* Shuts down and deletes the specified stage (disconnecting all participants).
|
|
32
|
+
*/
|
|
33
|
+
deleteStage(params: IVSRealTime.Types.DeleteStageRequest, callback?: (err: AWSError, data: IVSRealTime.Types.DeleteStageResponse) => void): Request<IVSRealTime.Types.DeleteStageResponse, AWSError>;
|
|
34
|
+
/**
|
|
35
|
+
* Shuts down and deletes the specified stage (disconnecting all participants).
|
|
36
|
+
*/
|
|
37
|
+
deleteStage(callback?: (err: AWSError, data: IVSRealTime.Types.DeleteStageResponse) => void): Request<IVSRealTime.Types.DeleteStageResponse, AWSError>;
|
|
38
|
+
/**
|
|
39
|
+
* Disconnects a specified participant and revokes the participant permanently from a specified stage.
|
|
40
|
+
*/
|
|
41
|
+
disconnectParticipant(params: IVSRealTime.Types.DisconnectParticipantRequest, callback?: (err: AWSError, data: IVSRealTime.Types.DisconnectParticipantResponse) => void): Request<IVSRealTime.Types.DisconnectParticipantResponse, AWSError>;
|
|
42
|
+
/**
|
|
43
|
+
* Disconnects a specified participant and revokes the participant permanently from a specified stage.
|
|
44
|
+
*/
|
|
45
|
+
disconnectParticipant(callback?: (err: AWSError, data: IVSRealTime.Types.DisconnectParticipantResponse) => void): Request<IVSRealTime.Types.DisconnectParticipantResponse, AWSError>;
|
|
46
|
+
/**
|
|
47
|
+
* Gets information for the specified stage.
|
|
48
|
+
*/
|
|
49
|
+
getStage(params: IVSRealTime.Types.GetStageRequest, callback?: (err: AWSError, data: IVSRealTime.Types.GetStageResponse) => void): Request<IVSRealTime.Types.GetStageResponse, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Gets information for the specified stage.
|
|
52
|
+
*/
|
|
53
|
+
getStage(callback?: (err: AWSError, data: IVSRealTime.Types.GetStageResponse) => void): Request<IVSRealTime.Types.GetStageResponse, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* Gets summary information about all stages in your account, in the AWS region where the API request is processed.
|
|
56
|
+
*/
|
|
57
|
+
listStages(params: IVSRealTime.Types.ListStagesRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ListStagesResponse) => void): Request<IVSRealTime.Types.ListStagesResponse, AWSError>;
|
|
58
|
+
/**
|
|
59
|
+
* Gets summary information about all stages in your account, in the AWS region where the API request is processed.
|
|
60
|
+
*/
|
|
61
|
+
listStages(callback?: (err: AWSError, data: IVSRealTime.Types.ListStagesResponse) => void): Request<IVSRealTime.Types.ListStagesResponse, AWSError>;
|
|
62
|
+
/**
|
|
63
|
+
* Gets information about AWS tags for the specified ARN.
|
|
64
|
+
*/
|
|
65
|
+
listTagsForResource(params: IVSRealTime.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: IVSRealTime.Types.ListTagsForResourceResponse) => void): Request<IVSRealTime.Types.ListTagsForResourceResponse, AWSError>;
|
|
66
|
+
/**
|
|
67
|
+
* Gets information about AWS tags for the specified ARN.
|
|
68
|
+
*/
|
|
69
|
+
listTagsForResource(callback?: (err: AWSError, data: IVSRealTime.Types.ListTagsForResourceResponse) => void): Request<IVSRealTime.Types.ListTagsForResourceResponse, AWSError>;
|
|
70
|
+
/**
|
|
71
|
+
* Adds or updates tags for the AWS resource with the specified ARN.
|
|
72
|
+
*/
|
|
73
|
+
tagResource(params: IVSRealTime.Types.TagResourceRequest, callback?: (err: AWSError, data: IVSRealTime.Types.TagResourceResponse) => void): Request<IVSRealTime.Types.TagResourceResponse, AWSError>;
|
|
74
|
+
/**
|
|
75
|
+
* Adds or updates tags for the AWS resource with the specified ARN.
|
|
76
|
+
*/
|
|
77
|
+
tagResource(callback?: (err: AWSError, data: IVSRealTime.Types.TagResourceResponse) => void): Request<IVSRealTime.Types.TagResourceResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* Removes tags from the resource with the specified ARN.
|
|
80
|
+
*/
|
|
81
|
+
untagResource(params: IVSRealTime.Types.UntagResourceRequest, callback?: (err: AWSError, data: IVSRealTime.Types.UntagResourceResponse) => void): Request<IVSRealTime.Types.UntagResourceResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* Removes tags from the resource with the specified ARN.
|
|
84
|
+
*/
|
|
85
|
+
untagResource(callback?: (err: AWSError, data: IVSRealTime.Types.UntagResourceResponse) => void): Request<IVSRealTime.Types.UntagResourceResponse, AWSError>;
|
|
86
|
+
/**
|
|
87
|
+
* Updates a stage’s configuration.
|
|
88
|
+
*/
|
|
89
|
+
updateStage(params: IVSRealTime.Types.UpdateStageRequest, callback?: (err: AWSError, data: IVSRealTime.Types.UpdateStageResponse) => void): Request<IVSRealTime.Types.UpdateStageResponse, AWSError>;
|
|
90
|
+
/**
|
|
91
|
+
* Updates a stage’s configuration.
|
|
92
|
+
*/
|
|
93
|
+
updateStage(callback?: (err: AWSError, data: IVSRealTime.Types.UpdateStageResponse) => void): Request<IVSRealTime.Types.UpdateStageResponse, AWSError>;
|
|
94
|
+
}
|
|
95
|
+
declare namespace IVSRealTime {
|
|
96
|
+
export interface CreateParticipantTokenRequest {
|
|
97
|
+
/**
|
|
98
|
+
* Application-provided attributes to encode into the token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
99
|
+
*/
|
|
100
|
+
attributes?: ParticipantTokenAttributes;
|
|
101
|
+
/**
|
|
102
|
+
* Set of capabilities that the user is allowed to perform in the stage. Default: PUBLISH, SUBSCRIBE.
|
|
103
|
+
*/
|
|
104
|
+
capabilities?: ParticipantTokenCapabilities;
|
|
105
|
+
/**
|
|
106
|
+
* Duration (in minutes), after which the token expires. Default: 60 (1 hour).
|
|
107
|
+
*/
|
|
108
|
+
duration?: ParticipantTokenDurationMinutes;
|
|
109
|
+
/**
|
|
110
|
+
* ARN of the stage to which this token is scoped.
|
|
111
|
+
*/
|
|
112
|
+
stageArn: StageArn;
|
|
113
|
+
/**
|
|
114
|
+
* Name that can be specified to help identify the token. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
115
|
+
*/
|
|
116
|
+
userId?: ParticipantTokenUserId;
|
|
117
|
+
}
|
|
118
|
+
export interface CreateParticipantTokenResponse {
|
|
119
|
+
/**
|
|
120
|
+
* The participant token that was created.
|
|
121
|
+
*/
|
|
122
|
+
participantToken?: ParticipantToken;
|
|
123
|
+
}
|
|
124
|
+
export interface CreateStageRequest {
|
|
125
|
+
/**
|
|
126
|
+
* Optional name that can be specified for the stage being created.
|
|
127
|
+
*/
|
|
128
|
+
name?: StageName;
|
|
129
|
+
/**
|
|
130
|
+
* Array of participant token configuration objects to attach to the new stage.
|
|
131
|
+
*/
|
|
132
|
+
participantTokenConfigurations?: ParticipantTokenConfigurations;
|
|
133
|
+
/**
|
|
134
|
+
* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
|
|
135
|
+
*/
|
|
136
|
+
tags?: Tags;
|
|
137
|
+
}
|
|
138
|
+
export interface CreateStageResponse {
|
|
139
|
+
/**
|
|
140
|
+
* Participant tokens attached to the stage. These correspond to the participants in the request.
|
|
141
|
+
*/
|
|
142
|
+
participantTokens?: ParticipantTokenList;
|
|
143
|
+
/**
|
|
144
|
+
* The stage that was created.
|
|
145
|
+
*/
|
|
146
|
+
stage?: Stage;
|
|
147
|
+
}
|
|
148
|
+
export interface DeleteStageRequest {
|
|
149
|
+
/**
|
|
150
|
+
* ARN of the stage to be deleted.
|
|
151
|
+
*/
|
|
152
|
+
arn: StageArn;
|
|
153
|
+
}
|
|
154
|
+
export interface DeleteStageResponse {
|
|
155
|
+
}
|
|
156
|
+
export type DisconnectParticipantReason = string;
|
|
157
|
+
export interface DisconnectParticipantRequest {
|
|
158
|
+
/**
|
|
159
|
+
* Identifier of the participant to be disconnected. This is returned by CreateParticipantToken.
|
|
160
|
+
*/
|
|
161
|
+
participantId: ParticipantTokenId;
|
|
162
|
+
/**
|
|
163
|
+
* Description of why this participant is being disconnected.
|
|
164
|
+
*/
|
|
165
|
+
reason?: DisconnectParticipantReason;
|
|
166
|
+
/**
|
|
167
|
+
* ARN of the stage to which the participant is attached.
|
|
168
|
+
*/
|
|
169
|
+
stageArn: StageArn;
|
|
170
|
+
}
|
|
171
|
+
export interface DisconnectParticipantResponse {
|
|
172
|
+
}
|
|
173
|
+
export interface GetStageRequest {
|
|
174
|
+
/**
|
|
175
|
+
* ARN of the stage for which the information is to be retrieved.
|
|
176
|
+
*/
|
|
177
|
+
arn: StageArn;
|
|
178
|
+
}
|
|
179
|
+
export interface GetStageResponse {
|
|
180
|
+
/**
|
|
181
|
+
*
|
|
182
|
+
*/
|
|
183
|
+
stage?: Stage;
|
|
184
|
+
}
|
|
185
|
+
export interface ListStagesRequest {
|
|
186
|
+
/**
|
|
187
|
+
* Maximum number of results to return. Default: 50.
|
|
188
|
+
*/
|
|
189
|
+
maxResults?: MaxStageResults;
|
|
190
|
+
/**
|
|
191
|
+
* The first stage to retrieve. This is used for pagination; see the nextToken response field.
|
|
192
|
+
*/
|
|
193
|
+
nextToken?: PaginationToken;
|
|
194
|
+
}
|
|
195
|
+
export interface ListStagesResponse {
|
|
196
|
+
/**
|
|
197
|
+
* If there are more rooms than maxResults, use nextToken in the request to get the next set.
|
|
198
|
+
*/
|
|
199
|
+
nextToken?: PaginationToken;
|
|
200
|
+
/**
|
|
201
|
+
* List of the matching stages (summary information only).
|
|
202
|
+
*/
|
|
203
|
+
stages: StageSummaryList;
|
|
204
|
+
}
|
|
205
|
+
export interface ListTagsForResourceRequest {
|
|
206
|
+
/**
|
|
207
|
+
* The ARN of the resource to be retrieved. The ARN must be URL-encoded.
|
|
208
|
+
*/
|
|
209
|
+
resourceArn: ResourceArn;
|
|
210
|
+
}
|
|
211
|
+
export interface ListTagsForResourceResponse {
|
|
212
|
+
/**
|
|
213
|
+
* Tags attached to the resource. Array of maps, each of the form string:string (key:value).
|
|
214
|
+
*/
|
|
215
|
+
tags: Tags;
|
|
216
|
+
}
|
|
217
|
+
export type MaxStageResults = number;
|
|
218
|
+
export type PaginationToken = string;
|
|
219
|
+
export interface ParticipantToken {
|
|
220
|
+
/**
|
|
221
|
+
* Application-provided attributes to encode into the token and attach to a stage. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
222
|
+
*/
|
|
223
|
+
attributes?: ParticipantTokenAttributes;
|
|
224
|
+
/**
|
|
225
|
+
* Set of capabilities that the user is allowed to perform in the stage.
|
|
226
|
+
*/
|
|
227
|
+
capabilities?: ParticipantTokenCapabilities;
|
|
228
|
+
/**
|
|
229
|
+
* Duration (in minutes), after which the participant token expires. Default: 60 (1 hour).
|
|
230
|
+
*/
|
|
231
|
+
duration?: ParticipantTokenDurationMinutes;
|
|
232
|
+
/**
|
|
233
|
+
* ISO 8601 timestamp (returned as a string) for when this token expires.
|
|
234
|
+
*/
|
|
235
|
+
expirationTime?: ParticipantTokenExpirationTime;
|
|
236
|
+
/**
|
|
237
|
+
* Unique identifier for this participant token, assigned by IVS.
|
|
238
|
+
*/
|
|
239
|
+
participantId?: ParticipantTokenId;
|
|
240
|
+
/**
|
|
241
|
+
* The issued client token, encrypted.
|
|
242
|
+
*/
|
|
243
|
+
token?: ParticipantTokenString;
|
|
244
|
+
/**
|
|
245
|
+
* Name to help identify the token. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
246
|
+
*/
|
|
247
|
+
userId?: ParticipantTokenUserId;
|
|
248
|
+
}
|
|
249
|
+
export type ParticipantTokenAttributes = {[key: string]: String};
|
|
250
|
+
export type ParticipantTokenCapabilities = ParticipantTokenCapability[];
|
|
251
|
+
export type ParticipantTokenCapability = "PUBLISH"|"SUBSCRIBE"|string;
|
|
252
|
+
export interface ParticipantTokenConfiguration {
|
|
253
|
+
/**
|
|
254
|
+
* Application-provided attributes to encode into the corresponding participant token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
255
|
+
*/
|
|
256
|
+
attributes?: ParticipantTokenAttributes;
|
|
257
|
+
/**
|
|
258
|
+
* Set of capabilities that the user is allowed to perform in the stage.
|
|
259
|
+
*/
|
|
260
|
+
capabilities?: ParticipantTokenCapabilities;
|
|
261
|
+
/**
|
|
262
|
+
* Duration (in minutes), after which the corresponding participant token expires. Default: 60 (1 hour).
|
|
263
|
+
*/
|
|
264
|
+
duration?: ParticipantTokenDurationMinutes;
|
|
265
|
+
/**
|
|
266
|
+
* Name that can be specified to help identify the corresponding participant token. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.
|
|
267
|
+
*/
|
|
268
|
+
userId?: ParticipantTokenUserId;
|
|
269
|
+
}
|
|
270
|
+
export type ParticipantTokenConfigurations = ParticipantTokenConfiguration[];
|
|
271
|
+
export type ParticipantTokenDurationMinutes = number;
|
|
272
|
+
export type ParticipantTokenExpirationTime = Date;
|
|
273
|
+
export type ParticipantTokenId = string;
|
|
274
|
+
export type ParticipantTokenList = ParticipantToken[];
|
|
275
|
+
export type ParticipantTokenString = string;
|
|
276
|
+
export type ParticipantTokenUserId = string;
|
|
277
|
+
export type ResourceArn = string;
|
|
278
|
+
export interface Stage {
|
|
279
|
+
/**
|
|
280
|
+
* ID of the active session within the stage.
|
|
281
|
+
*/
|
|
282
|
+
activeSessionId?: StageSessionId;
|
|
283
|
+
/**
|
|
284
|
+
* Stage ARN.
|
|
285
|
+
*/
|
|
286
|
+
arn: StageArn;
|
|
287
|
+
/**
|
|
288
|
+
* Stage name.
|
|
289
|
+
*/
|
|
290
|
+
name?: StageName;
|
|
291
|
+
/**
|
|
292
|
+
* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
|
|
293
|
+
*/
|
|
294
|
+
tags?: Tags;
|
|
295
|
+
}
|
|
296
|
+
export type StageArn = string;
|
|
297
|
+
export type StageName = string;
|
|
298
|
+
export type StageSessionId = string;
|
|
299
|
+
export interface StageSummary {
|
|
300
|
+
/**
|
|
301
|
+
* ID of the active session within the stage.
|
|
302
|
+
*/
|
|
303
|
+
activeSessionId?: StageSessionId;
|
|
304
|
+
/**
|
|
305
|
+
* Stage ARN.
|
|
306
|
+
*/
|
|
307
|
+
arn: StageArn;
|
|
308
|
+
/**
|
|
309
|
+
* Stage name.
|
|
310
|
+
*/
|
|
311
|
+
name?: StageName;
|
|
312
|
+
/**
|
|
313
|
+
* Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.
|
|
314
|
+
*/
|
|
315
|
+
tags?: Tags;
|
|
316
|
+
}
|
|
317
|
+
export type StageSummaryList = StageSummary[];
|
|
318
|
+
export type String = string;
|
|
319
|
+
export type TagKey = string;
|
|
320
|
+
export type TagKeyList = TagKey[];
|
|
321
|
+
export interface TagResourceRequest {
|
|
322
|
+
/**
|
|
323
|
+
* The ARN of the resource to be tagged. The ARN must be URL-encoded.
|
|
324
|
+
*/
|
|
325
|
+
resourceArn: ResourceArn;
|
|
326
|
+
/**
|
|
327
|
+
* Array of tags to be added or updated. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints beyond what is documented there.
|
|
328
|
+
*/
|
|
329
|
+
tags: Tags;
|
|
330
|
+
}
|
|
331
|
+
export interface TagResourceResponse {
|
|
332
|
+
}
|
|
333
|
+
export type TagValue = string;
|
|
334
|
+
export type Tags = {[key: string]: TagValue};
|
|
335
|
+
export interface UntagResourceRequest {
|
|
336
|
+
/**
|
|
337
|
+
* The ARN of the resource to be untagged. The ARN must be URL-encoded.
|
|
338
|
+
*/
|
|
339
|
+
resourceArn: ResourceArn;
|
|
340
|
+
/**
|
|
341
|
+
* Array of tags to be removed. Array of maps, each of the form string:string (key:value). See Tagging AWS Resources for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints beyond what is documented there.
|
|
342
|
+
*/
|
|
343
|
+
tagKeys: TagKeyList;
|
|
344
|
+
}
|
|
345
|
+
export interface UntagResourceResponse {
|
|
346
|
+
}
|
|
347
|
+
export interface UpdateStageRequest {
|
|
348
|
+
/**
|
|
349
|
+
* ARN of the stage to be updated.
|
|
350
|
+
*/
|
|
351
|
+
arn: StageArn;
|
|
352
|
+
/**
|
|
353
|
+
* Name of the stage to be updated.
|
|
354
|
+
*/
|
|
355
|
+
name?: StageName;
|
|
356
|
+
}
|
|
357
|
+
export interface UpdateStageResponse {
|
|
358
|
+
/**
|
|
359
|
+
* The updated stage.
|
|
360
|
+
*/
|
|
361
|
+
stage?: Stage;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
365
|
+
*/
|
|
366
|
+
export type apiVersion = "2020-07-14"|"latest"|string;
|
|
367
|
+
export interface ClientApiVersions {
|
|
368
|
+
/**
|
|
369
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
370
|
+
*/
|
|
371
|
+
apiVersion?: apiVersion;
|
|
372
|
+
}
|
|
373
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
|
374
|
+
/**
|
|
375
|
+
* Contains interfaces for use with the IVSRealTime client.
|
|
376
|
+
*/
|
|
377
|
+
export import Types = IVSRealTime;
|
|
378
|
+
}
|
|
379
|
+
export = IVSRealTime;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
require('../lib/node_loader');
|
|
2
|
+
var AWS = require('../lib/core');
|
|
3
|
+
var Service = AWS.Service;
|
|
4
|
+
var apiLoader = AWS.apiLoader;
|
|
5
|
+
|
|
6
|
+
apiLoader.services['ivsrealtime'] = {};
|
|
7
|
+
AWS.IVSRealTime = Service.defineService('ivsrealtime', ['2020-07-14']);
|
|
8
|
+
Object.defineProperty(apiLoader.services['ivsrealtime'], '2020-07-14', {
|
|
9
|
+
get: function get() {
|
|
10
|
+
var model = require('../apis/ivs-realtime-2020-07-14.min.json');
|
|
11
|
+
model.paginators = require('../apis/ivs-realtime-2020-07-14.paginators.json').pagination;
|
|
12
|
+
return model;
|
|
13
|
+
},
|
|
14
|
+
enumerable: true,
|
|
15
|
+
configurable: true
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
module.exports = AWS.IVSRealTime;
|
|
@@ -1884,7 +1884,7 @@ When you specify Version 1, you must also set ID3 metadata (timedMetadata) to Pa
|
|
|
1884
1884
|
*/
|
|
1885
1885
|
BackgroundOpacity?: __integerMin0Max255;
|
|
1886
1886
|
/**
|
|
1887
|
-
* Specify how MediaConvert handles the display definition segment (DDS).
|
|
1887
|
+
* Specify how MediaConvert handles the display definition segment (DDS). To exclude the DDS from this set of captions: Keep the default, None. To include the DDS: Choose Specified. When you do, also specify the offset coordinates of the display window with DDS x-coordinate and DDS y-coordinate. To include the DDS, but not include display window data: Choose No display window. When you do, you can write position metadata to the page composition segment (PCS) with DDS x-coordinate and DDS y-coordinate. For video resolutions with a height of 576 pixels or less, MediaConvert doesn't include the DDS, regardless of the value you choose for DDS handling. All burn-in and DVB-Sub font settings must match.
|
|
1888
1888
|
*/
|
|
1889
1889
|
DdsHandling?: DvbddsHandling;
|
|
1890
1890
|
/**
|
|
@@ -4242,7 +4242,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
|
|
|
4242
4242
|
*/
|
|
4243
4243
|
Mpeg2FourCCControl?: MovMpeg2FourCCControl;
|
|
4244
4244
|
/**
|
|
4245
|
-
*
|
|
4245
|
+
* Unless you need Omneon compatibility: Keep the default value, None. To make this output compatible with Omneon: Choose Omneon. When you do, MediaConvert increases the length of the 'elst' edit list atom. Note that this might cause file rejections when a recipient of the output file doesn't expect this extra padding.
|
|
4246
4246
|
*/
|
|
4247
4247
|
PaddingControl?: MovPaddingControl;
|
|
4248
4248
|
/**
|