aws-cdk-lib 2.178.2__py3-none-any.whl → 2.180.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +83 -41
- aws_cdk/_jsii/__init__.py +1 -2
- aws_cdk/_jsii/{aws-cdk-lib@2.178.2.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +47 -0
- aws_cdk/aws_apigateway/__init__.py +176 -35
- aws_cdk/aws_apigatewayv2/__init__.py +151 -32
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +348 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +8 -8
- aws_cdk/aws_appsync/__init__.py +10 -7
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +506 -62
- aws_cdk/aws_cloudfront/__init__.py +1037 -146
- aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
- aws_cdk/aws_cloudtrail/__init__.py +4 -8
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +218 -2
- aws_cdk/aws_codepipeline/__init__.py +113 -28
- aws_cdk/aws_codepipeline_actions/__init__.py +554 -63
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +676 -29
- aws_cdk/aws_connect/__init__.py +257 -0
- aws_cdk/aws_datasync/__init__.py +279 -50
- aws_cdk/aws_deadline/__init__.py +683 -6
- aws_cdk/aws_directoryservice/__init__.py +9 -4
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +0 -54
- aws_cdk/aws_ec2/__init__.py +402 -130
- aws_cdk/aws_ecs/__init__.py +28 -43
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +560 -182
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +17 -26
- aws_cdk/aws_events_targets/__init__.py +303 -16
- aws_cdk/aws_fms/__init__.py +5 -5
- aws_cdk/aws_fsx/__init__.py +5 -4
- aws_cdk/aws_glue/__init__.py +161 -0
- aws_cdk/aws_groundstation/__init__.py +23 -1
- aws_cdk/aws_iam/__init__.py +15 -15
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +254 -77
- aws_cdk/aws_kinesis/__init__.py +689 -35
- aws_cdk/aws_lambda/__init__.py +10 -15
- aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
- aws_cdk/aws_logs/__init__.py +62 -13
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_opensearchserverless/__init__.py +19 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -9
- aws_cdk/aws_rds/__init__.py +246 -82
- aws_cdk/aws_s3/__init__.py +287 -9
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +4 -5
- aws_cdk/aws_stepfunctions/__init__.py +301 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +269 -163
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +820 -2
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- aws_cdk/pipelines/__init__.py +2 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -2
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +69 -70
- aws_cdk/lambda_layer_kubectl/__init__.py +0 -107
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.178.2.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ivs/__init__.py
CHANGED
|
@@ -100,8 +100,14 @@ class CfnChannel(
|
|
|
100
100
|
|
|
101
101
|
cfn_channel = ivs.CfnChannel(self, "MyCfnChannel",
|
|
102
102
|
authorized=False,
|
|
103
|
+
container_format="containerFormat",
|
|
103
104
|
insecure_ingest=False,
|
|
104
105
|
latency_mode="latencyMode",
|
|
106
|
+
multitrack_input_configuration=ivs.CfnChannel.MultitrackInputConfigurationProperty(
|
|
107
|
+
enabled=False,
|
|
108
|
+
maximum_resolution="maximumResolution",
|
|
109
|
+
policy="policy"
|
|
110
|
+
),
|
|
105
111
|
name="name",
|
|
106
112
|
preset="preset",
|
|
107
113
|
recording_configuration_arn="recordingConfigurationArn",
|
|
@@ -119,8 +125,10 @@ class CfnChannel(
|
|
|
119
125
|
id: builtins.str,
|
|
120
126
|
*,
|
|
121
127
|
authorized: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
128
|
+
container_format: typing.Optional[builtins.str] = None,
|
|
122
129
|
insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
123
130
|
latency_mode: typing.Optional[builtins.str] = None,
|
|
131
|
+
multitrack_input_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.MultitrackInputConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
124
132
|
name: typing.Optional[builtins.str] = None,
|
|
125
133
|
preset: typing.Optional[builtins.str] = None,
|
|
126
134
|
recording_configuration_arn: typing.Optional[builtins.str] = None,
|
|
@@ -130,14 +138,16 @@ class CfnChannel(
|
|
|
130
138
|
'''
|
|
131
139
|
:param scope: Scope in which this resource is defined.
|
|
132
140
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
133
|
-
:param authorized: Whether the channel is authorized.
|
|
134
|
-
:param
|
|
135
|
-
:param
|
|
136
|
-
:param
|
|
137
|
-
:param
|
|
138
|
-
:param
|
|
139
|
-
:param
|
|
140
|
-
:param
|
|
141
|
+
:param authorized: Whether the channel is authorized. Default: - false
|
|
142
|
+
:param container_format: Indicates which content-packaging format is used (MPEG-TS or fMP4). If multitrackInputConfiguration is specified and enabled is true, then containerFormat is required and must be set to FRAGMENTED_MP4. Otherwise, containerFormat may be set to TS or FRAGMENTED_MP4. Default: TS. Default: - "TS"
|
|
143
|
+
:param insecure_ingest: Whether the channel allows insecure ingest. Default: - false
|
|
144
|
+
:param latency_mode: Channel latency mode. Default: - "LOW"
|
|
145
|
+
:param multitrack_input_configuration: Object specifying multitrack input configuration. Default: no multitrack input configuration is specified.
|
|
146
|
+
:param name: Channel. Default: - "-"
|
|
147
|
+
:param preset: Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
|
148
|
+
:param recording_configuration_arn: Recording Configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (recording is disabled). Default: - ""
|
|
149
|
+
:param tags: A list of key-value pairs that contain metadata for the asset model.
|
|
150
|
+
:param type: Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: - "STANDARD"
|
|
141
151
|
'''
|
|
142
152
|
if __debug__:
|
|
143
153
|
type_hints = typing.get_type_hints(_typecheckingstub__998485c6924ca07e096c10b7976e238a36e5cfb75264ee66a67de472363369d6)
|
|
@@ -145,8 +155,10 @@ class CfnChannel(
|
|
|
145
155
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
146
156
|
props = CfnChannelProps(
|
|
147
157
|
authorized=authorized,
|
|
158
|
+
container_format=container_format,
|
|
148
159
|
insecure_ingest=insecure_ingest,
|
|
149
160
|
latency_mode=latency_mode,
|
|
161
|
+
multitrack_input_configuration=multitrack_input_configuration,
|
|
150
162
|
name=name,
|
|
151
163
|
preset=preset,
|
|
152
164
|
recording_configuration_arn=recording_configuration_arn,
|
|
@@ -189,9 +201,7 @@ class CfnChannel(
|
|
|
189
201
|
@builtins.property
|
|
190
202
|
@jsii.member(jsii_name="attrArn")
|
|
191
203
|
def attr_arn(self) -> builtins.str:
|
|
192
|
-
'''
|
|
193
|
-
|
|
194
|
-
For example: ``arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh``
|
|
204
|
+
'''Channel ARN is automatically generated on creation and assigned as the unique identifier.
|
|
195
205
|
|
|
196
206
|
:cloudformationAttribute: Arn
|
|
197
207
|
'''
|
|
@@ -202,8 +212,6 @@ class CfnChannel(
|
|
|
202
212
|
def attr_ingest_endpoint(self) -> builtins.str:
|
|
203
213
|
'''Channel ingest endpoint, part of the definition of an ingest server, used when you set up streaming software.
|
|
204
214
|
|
|
205
|
-
For example: ``a1b2c3d4e5f6.global-contribute.live-video.net``
|
|
206
|
-
|
|
207
215
|
:cloudformationAttribute: IngestEndpoint
|
|
208
216
|
'''
|
|
209
217
|
return typing.cast(builtins.str, jsii.get(self, "attrIngestEndpoint"))
|
|
@@ -211,9 +219,7 @@ class CfnChannel(
|
|
|
211
219
|
@builtins.property
|
|
212
220
|
@jsii.member(jsii_name="attrPlaybackUrl")
|
|
213
221
|
def attr_playback_url(self) -> builtins.str:
|
|
214
|
-
'''Channel
|
|
215
|
-
|
|
216
|
-
For example: ``https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8``
|
|
222
|
+
'''Channel Playback URL.
|
|
217
223
|
|
|
218
224
|
:cloudformationAttribute: PlaybackUrl
|
|
219
225
|
'''
|
|
@@ -248,12 +254,25 @@ class CfnChannel(
|
|
|
248
254
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
249
255
|
jsii.set(self, "authorized", value) # pyright: ignore[reportArgumentType]
|
|
250
256
|
|
|
257
|
+
@builtins.property
|
|
258
|
+
@jsii.member(jsii_name="containerFormat")
|
|
259
|
+
def container_format(self) -> typing.Optional[builtins.str]:
|
|
260
|
+
'''Indicates which content-packaging format is used (MPEG-TS or fMP4).'''
|
|
261
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "containerFormat"))
|
|
262
|
+
|
|
263
|
+
@container_format.setter
|
|
264
|
+
def container_format(self, value: typing.Optional[builtins.str]) -> None:
|
|
265
|
+
if __debug__:
|
|
266
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c5da102677f3042d402ff70f74aee693c78470595fd1a7c9b4900403983f7b74)
|
|
267
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
268
|
+
jsii.set(self, "containerFormat", value) # pyright: ignore[reportArgumentType]
|
|
269
|
+
|
|
251
270
|
@builtins.property
|
|
252
271
|
@jsii.member(jsii_name="insecureIngest")
|
|
253
272
|
def insecure_ingest(
|
|
254
273
|
self,
|
|
255
274
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
256
|
-
'''Whether the channel allows insecure
|
|
275
|
+
'''Whether the channel allows insecure ingest.'''
|
|
257
276
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "insecureIngest"))
|
|
258
277
|
|
|
259
278
|
@insecure_ingest.setter
|
|
@@ -269,10 +288,7 @@ class CfnChannel(
|
|
|
269
288
|
@builtins.property
|
|
270
289
|
@jsii.member(jsii_name="latencyMode")
|
|
271
290
|
def latency_mode(self) -> typing.Optional[builtins.str]:
|
|
272
|
-
'''Channel latency mode.
|
|
273
|
-
|
|
274
|
-
Valid values:.
|
|
275
|
-
'''
|
|
291
|
+
'''Channel latency mode.'''
|
|
276
292
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "latencyMode"))
|
|
277
293
|
|
|
278
294
|
@latency_mode.setter
|
|
@@ -282,10 +298,28 @@ class CfnChannel(
|
|
|
282
298
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
283
299
|
jsii.set(self, "latencyMode", value) # pyright: ignore[reportArgumentType]
|
|
284
300
|
|
|
301
|
+
@builtins.property
|
|
302
|
+
@jsii.member(jsii_name="multitrackInputConfiguration")
|
|
303
|
+
def multitrack_input_configuration(
|
|
304
|
+
self,
|
|
305
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MultitrackInputConfigurationProperty"]]:
|
|
306
|
+
'''Object specifying multitrack input configuration.'''
|
|
307
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MultitrackInputConfigurationProperty"]], jsii.get(self, "multitrackInputConfiguration"))
|
|
308
|
+
|
|
309
|
+
@multitrack_input_configuration.setter
|
|
310
|
+
def multitrack_input_configuration(
|
|
311
|
+
self,
|
|
312
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.MultitrackInputConfigurationProperty"]],
|
|
313
|
+
) -> None:
|
|
314
|
+
if __debug__:
|
|
315
|
+
type_hints = typing.get_type_hints(_typecheckingstub__012c045fd3860567ed6aa28435a35d575d1dc0a881855d124b21f2d76102ba73)
|
|
316
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
317
|
+
jsii.set(self, "multitrackInputConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
318
|
+
|
|
285
319
|
@builtins.property
|
|
286
320
|
@jsii.member(jsii_name="name")
|
|
287
321
|
def name(self) -> typing.Optional[builtins.str]:
|
|
288
|
-
'''Channel
|
|
322
|
+
'''Channel.'''
|
|
289
323
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
290
324
|
|
|
291
325
|
@name.setter
|
|
@@ -298,7 +332,7 @@ class CfnChannel(
|
|
|
298
332
|
@builtins.property
|
|
299
333
|
@jsii.member(jsii_name="preset")
|
|
300
334
|
def preset(self) -> typing.Optional[builtins.str]:
|
|
301
|
-
'''
|
|
335
|
+
'''Optional transcode preset for the channel.'''
|
|
302
336
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "preset"))
|
|
303
337
|
|
|
304
338
|
@preset.setter
|
|
@@ -311,7 +345,7 @@ class CfnChannel(
|
|
|
311
345
|
@builtins.property
|
|
312
346
|
@jsii.member(jsii_name="recordingConfigurationArn")
|
|
313
347
|
def recording_configuration_arn(self) -> typing.Optional[builtins.str]:
|
|
314
|
-
'''
|
|
348
|
+
'''Recording Configuration ARN.'''
|
|
315
349
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "recordingConfigurationArn"))
|
|
316
350
|
|
|
317
351
|
@recording_configuration_arn.setter
|
|
@@ -324,7 +358,7 @@ class CfnChannel(
|
|
|
324
358
|
@builtins.property
|
|
325
359
|
@jsii.member(jsii_name="tagsRaw")
|
|
326
360
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
327
|
-
'''
|
|
361
|
+
'''A list of key-value pairs that contain metadata for the asset model.'''
|
|
328
362
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tagsRaw"))
|
|
329
363
|
|
|
330
364
|
@tags_raw.setter
|
|
@@ -337,7 +371,7 @@ class CfnChannel(
|
|
|
337
371
|
@builtins.property
|
|
338
372
|
@jsii.member(jsii_name="type")
|
|
339
373
|
def type(self) -> typing.Optional[builtins.str]:
|
|
340
|
-
'''
|
|
374
|
+
'''Channel type, which determines the allowable resolution and bitrate.'''
|
|
341
375
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "type"))
|
|
342
376
|
|
|
343
377
|
@type.setter
|
|
@@ -347,14 +381,115 @@ class CfnChannel(
|
|
|
347
381
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
348
382
|
jsii.set(self, "type", value) # pyright: ignore[reportArgumentType]
|
|
349
383
|
|
|
384
|
+
@jsii.data_type(
|
|
385
|
+
jsii_type="aws-cdk-lib.aws_ivs.CfnChannel.MultitrackInputConfigurationProperty",
|
|
386
|
+
jsii_struct_bases=[],
|
|
387
|
+
name_mapping={
|
|
388
|
+
"enabled": "enabled",
|
|
389
|
+
"maximum_resolution": "maximumResolution",
|
|
390
|
+
"policy": "policy",
|
|
391
|
+
},
|
|
392
|
+
)
|
|
393
|
+
class MultitrackInputConfigurationProperty:
|
|
394
|
+
def __init__(
|
|
395
|
+
self,
|
|
396
|
+
*,
|
|
397
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
398
|
+
maximum_resolution: typing.Optional[builtins.str] = None,
|
|
399
|
+
policy: typing.Optional[builtins.str] = None,
|
|
400
|
+
) -> None:
|
|
401
|
+
'''A complex type that specifies multitrack input configuration.
|
|
402
|
+
|
|
403
|
+
:param enabled: Indicates whether multitrack input is enabled. Can be set to true only if channel type is STANDARD. Setting enabled to true with any other channel type will cause an exception. If true, then policy, maximumResolution, and containerFormat are required, and containerFormat must be set to FRAGMENTED_MP4. Default: false. Default: - false
|
|
404
|
+
:param maximum_resolution: Maximum resolution for multitrack input. Required if enabled is true.
|
|
405
|
+
:param policy: Indicates whether multitrack input is allowed or required. Required if enabled is true.
|
|
406
|
+
|
|
407
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html
|
|
408
|
+
:exampleMetadata: fixture=_generated
|
|
409
|
+
|
|
410
|
+
Example::
|
|
411
|
+
|
|
412
|
+
# The code below shows an example of how to instantiate this type.
|
|
413
|
+
# The values are placeholders you should change.
|
|
414
|
+
from aws_cdk import aws_ivs as ivs
|
|
415
|
+
|
|
416
|
+
multitrack_input_configuration_property = ivs.CfnChannel.MultitrackInputConfigurationProperty(
|
|
417
|
+
enabled=False,
|
|
418
|
+
maximum_resolution="maximumResolution",
|
|
419
|
+
policy="policy"
|
|
420
|
+
)
|
|
421
|
+
'''
|
|
422
|
+
if __debug__:
|
|
423
|
+
type_hints = typing.get_type_hints(_typecheckingstub__50f1752d428e0d083b8ac0b36e82de6eba9749ea58d877e914d9e63a503364d1)
|
|
424
|
+
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
425
|
+
check_type(argname="argument maximum_resolution", value=maximum_resolution, expected_type=type_hints["maximum_resolution"])
|
|
426
|
+
check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
|
|
427
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
428
|
+
if enabled is not None:
|
|
429
|
+
self._values["enabled"] = enabled
|
|
430
|
+
if maximum_resolution is not None:
|
|
431
|
+
self._values["maximum_resolution"] = maximum_resolution
|
|
432
|
+
if policy is not None:
|
|
433
|
+
self._values["policy"] = policy
|
|
434
|
+
|
|
435
|
+
@builtins.property
|
|
436
|
+
def enabled(
|
|
437
|
+
self,
|
|
438
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
439
|
+
'''Indicates whether multitrack input is enabled.
|
|
440
|
+
|
|
441
|
+
Can be set to true only if channel type is STANDARD. Setting enabled to true with any other channel type will cause an exception. If true, then policy, maximumResolution, and containerFormat are required, and containerFormat must be set to FRAGMENTED_MP4. Default: false.
|
|
442
|
+
|
|
443
|
+
:default: - false
|
|
444
|
+
|
|
445
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-enabled
|
|
446
|
+
'''
|
|
447
|
+
result = self._values.get("enabled")
|
|
448
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
449
|
+
|
|
450
|
+
@builtins.property
|
|
451
|
+
def maximum_resolution(self) -> typing.Optional[builtins.str]:
|
|
452
|
+
'''Maximum resolution for multitrack input.
|
|
453
|
+
|
|
454
|
+
Required if enabled is true.
|
|
455
|
+
|
|
456
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-maximumresolution
|
|
457
|
+
'''
|
|
458
|
+
result = self._values.get("maximum_resolution")
|
|
459
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
460
|
+
|
|
461
|
+
@builtins.property
|
|
462
|
+
def policy(self) -> typing.Optional[builtins.str]:
|
|
463
|
+
'''Indicates whether multitrack input is allowed or required.
|
|
464
|
+
|
|
465
|
+
Required if enabled is true.
|
|
466
|
+
|
|
467
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-policy
|
|
468
|
+
'''
|
|
469
|
+
result = self._values.get("policy")
|
|
470
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
471
|
+
|
|
472
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
473
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
474
|
+
|
|
475
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
476
|
+
return not (rhs == self)
|
|
477
|
+
|
|
478
|
+
def __repr__(self) -> str:
|
|
479
|
+
return "MultitrackInputConfigurationProperty(%s)" % ", ".join(
|
|
480
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
481
|
+
)
|
|
482
|
+
|
|
350
483
|
|
|
351
484
|
@jsii.data_type(
|
|
352
485
|
jsii_type="aws-cdk-lib.aws_ivs.CfnChannelProps",
|
|
353
486
|
jsii_struct_bases=[],
|
|
354
487
|
name_mapping={
|
|
355
488
|
"authorized": "authorized",
|
|
489
|
+
"container_format": "containerFormat",
|
|
356
490
|
"insecure_ingest": "insecureIngest",
|
|
357
491
|
"latency_mode": "latencyMode",
|
|
492
|
+
"multitrack_input_configuration": "multitrackInputConfiguration",
|
|
358
493
|
"name": "name",
|
|
359
494
|
"preset": "preset",
|
|
360
495
|
"recording_configuration_arn": "recordingConfigurationArn",
|
|
@@ -367,8 +502,10 @@ class CfnChannelProps:
|
|
|
367
502
|
self,
|
|
368
503
|
*,
|
|
369
504
|
authorized: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
505
|
+
container_format: typing.Optional[builtins.str] = None,
|
|
370
506
|
insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
371
507
|
latency_mode: typing.Optional[builtins.str] = None,
|
|
508
|
+
multitrack_input_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MultitrackInputConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
372
509
|
name: typing.Optional[builtins.str] = None,
|
|
373
510
|
preset: typing.Optional[builtins.str] = None,
|
|
374
511
|
recording_configuration_arn: typing.Optional[builtins.str] = None,
|
|
@@ -377,14 +514,16 @@ class CfnChannelProps:
|
|
|
377
514
|
) -> None:
|
|
378
515
|
'''Properties for defining a ``CfnChannel``.
|
|
379
516
|
|
|
380
|
-
:param authorized: Whether the channel is authorized.
|
|
381
|
-
:param
|
|
382
|
-
:param
|
|
383
|
-
:param
|
|
384
|
-
:param
|
|
385
|
-
:param
|
|
386
|
-
:param
|
|
387
|
-
:param
|
|
517
|
+
:param authorized: Whether the channel is authorized. Default: - false
|
|
518
|
+
:param container_format: Indicates which content-packaging format is used (MPEG-TS or fMP4). If multitrackInputConfiguration is specified and enabled is true, then containerFormat is required and must be set to FRAGMENTED_MP4. Otherwise, containerFormat may be set to TS or FRAGMENTED_MP4. Default: TS. Default: - "TS"
|
|
519
|
+
:param insecure_ingest: Whether the channel allows insecure ingest. Default: - false
|
|
520
|
+
:param latency_mode: Channel latency mode. Default: - "LOW"
|
|
521
|
+
:param multitrack_input_configuration: Object specifying multitrack input configuration. Default: no multitrack input configuration is specified.
|
|
522
|
+
:param name: Channel. Default: - "-"
|
|
523
|
+
:param preset: Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
|
524
|
+
:param recording_configuration_arn: Recording Configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (recording is disabled). Default: - ""
|
|
525
|
+
:param tags: A list of key-value pairs that contain metadata for the asset model.
|
|
526
|
+
:param type: Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: - "STANDARD"
|
|
388
527
|
|
|
389
528
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html
|
|
390
529
|
:exampleMetadata: fixture=_generated
|
|
@@ -397,8 +536,14 @@ class CfnChannelProps:
|
|
|
397
536
|
|
|
398
537
|
cfn_channel_props = ivs.CfnChannelProps(
|
|
399
538
|
authorized=False,
|
|
539
|
+
container_format="containerFormat",
|
|
400
540
|
insecure_ingest=False,
|
|
401
541
|
latency_mode="latencyMode",
|
|
542
|
+
multitrack_input_configuration=ivs.CfnChannel.MultitrackInputConfigurationProperty(
|
|
543
|
+
enabled=False,
|
|
544
|
+
maximum_resolution="maximumResolution",
|
|
545
|
+
policy="policy"
|
|
546
|
+
),
|
|
402
547
|
name="name",
|
|
403
548
|
preset="preset",
|
|
404
549
|
recording_configuration_arn="recordingConfigurationArn",
|
|
@@ -412,8 +557,10 @@ class CfnChannelProps:
|
|
|
412
557
|
if __debug__:
|
|
413
558
|
type_hints = typing.get_type_hints(_typecheckingstub__61646017dba4df4ec5b97fde61911670aebc6b8151847b927754a4e9c110979d)
|
|
414
559
|
check_type(argname="argument authorized", value=authorized, expected_type=type_hints["authorized"])
|
|
560
|
+
check_type(argname="argument container_format", value=container_format, expected_type=type_hints["container_format"])
|
|
415
561
|
check_type(argname="argument insecure_ingest", value=insecure_ingest, expected_type=type_hints["insecure_ingest"])
|
|
416
562
|
check_type(argname="argument latency_mode", value=latency_mode, expected_type=type_hints["latency_mode"])
|
|
563
|
+
check_type(argname="argument multitrack_input_configuration", value=multitrack_input_configuration, expected_type=type_hints["multitrack_input_configuration"])
|
|
417
564
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
418
565
|
check_type(argname="argument preset", value=preset, expected_type=type_hints["preset"])
|
|
419
566
|
check_type(argname="argument recording_configuration_arn", value=recording_configuration_arn, expected_type=type_hints["recording_configuration_arn"])
|
|
@@ -422,10 +569,14 @@ class CfnChannelProps:
|
|
|
422
569
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
423
570
|
if authorized is not None:
|
|
424
571
|
self._values["authorized"] = authorized
|
|
572
|
+
if container_format is not None:
|
|
573
|
+
self._values["container_format"] = container_format
|
|
425
574
|
if insecure_ingest is not None:
|
|
426
575
|
self._values["insecure_ingest"] = insecure_ingest
|
|
427
576
|
if latency_mode is not None:
|
|
428
577
|
self._values["latency_mode"] = latency_mode
|
|
578
|
+
if multitrack_input_configuration is not None:
|
|
579
|
+
self._values["multitrack_input_configuration"] = multitrack_input_configuration
|
|
429
580
|
if name is not None:
|
|
430
581
|
self._values["name"] = name
|
|
431
582
|
if preset is not None:
|
|
@@ -443,8 +594,6 @@ class CfnChannelProps:
|
|
|
443
594
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
444
595
|
'''Whether the channel is authorized.
|
|
445
596
|
|
|
446
|
-
*Default* : ``false``
|
|
447
|
-
|
|
448
597
|
:default: - false
|
|
449
598
|
|
|
450
599
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html#cfn-ivs-channel-authorized
|
|
@@ -452,13 +601,24 @@ class CfnChannelProps:
|
|
|
452
601
|
result = self._values.get("authorized")
|
|
453
602
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
454
603
|
|
|
604
|
+
@builtins.property
|
|
605
|
+
def container_format(self) -> typing.Optional[builtins.str]:
|
|
606
|
+
'''Indicates which content-packaging format is used (MPEG-TS or fMP4).
|
|
607
|
+
|
|
608
|
+
If multitrackInputConfiguration is specified and enabled is true, then containerFormat is required and must be set to FRAGMENTED_MP4. Otherwise, containerFormat may be set to TS or FRAGMENTED_MP4. Default: TS.
|
|
609
|
+
|
|
610
|
+
:default: - "TS"
|
|
611
|
+
|
|
612
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html#cfn-ivs-channel-containerformat
|
|
613
|
+
'''
|
|
614
|
+
result = self._values.get("container_format")
|
|
615
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
616
|
+
|
|
455
617
|
@builtins.property
|
|
456
618
|
def insecure_ingest(
|
|
457
619
|
self,
|
|
458
620
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
459
|
-
'''Whether the channel allows insecure
|
|
460
|
-
|
|
461
|
-
*Default* : ``false``
|
|
621
|
+
'''Whether the channel allows insecure ingest.
|
|
462
622
|
|
|
463
623
|
:default: - false
|
|
464
624
|
|
|
@@ -469,16 +629,7 @@ class CfnChannelProps:
|
|
|
469
629
|
|
|
470
630
|
@builtins.property
|
|
471
631
|
def latency_mode(self) -> typing.Optional[builtins.str]:
|
|
472
|
-
'''Channel latency mode.
|
|
473
|
-
|
|
474
|
-
- ``NORMAL`` : Use NORMAL to broadcast and deliver live video up to Full HD.
|
|
475
|
-
- ``LOW`` : Use LOW for near real-time interactions with viewers.
|
|
476
|
-
|
|
477
|
-
.. epigraph::
|
|
478
|
-
|
|
479
|
-
In the console, ``LOW`` and ``NORMAL`` correspond to ``Ultra-low`` and ``Standard`` , respectively.
|
|
480
|
-
|
|
481
|
-
*Default* : ``LOW``
|
|
632
|
+
'''Channel latency mode.
|
|
482
633
|
|
|
483
634
|
:default: - "LOW"
|
|
484
635
|
|
|
@@ -487,9 +638,22 @@ class CfnChannelProps:
|
|
|
487
638
|
result = self._values.get("latency_mode")
|
|
488
639
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
489
640
|
|
|
641
|
+
@builtins.property
|
|
642
|
+
def multitrack_input_configuration(
|
|
643
|
+
self,
|
|
644
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.MultitrackInputConfigurationProperty]]:
|
|
645
|
+
'''Object specifying multitrack input configuration.
|
|
646
|
+
|
|
647
|
+
Default: no multitrack input configuration is specified.
|
|
648
|
+
|
|
649
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html#cfn-ivs-channel-multitrackinputconfiguration
|
|
650
|
+
'''
|
|
651
|
+
result = self._values.get("multitrack_input_configuration")
|
|
652
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.MultitrackInputConfigurationProperty]], result)
|
|
653
|
+
|
|
490
654
|
@builtins.property
|
|
491
655
|
def name(self) -> typing.Optional[builtins.str]:
|
|
492
|
-
'''Channel
|
|
656
|
+
'''Channel.
|
|
493
657
|
|
|
494
658
|
:default: - "-"
|
|
495
659
|
|
|
@@ -500,9 +664,9 @@ class CfnChannelProps:
|
|
|
500
664
|
|
|
501
665
|
@builtins.property
|
|
502
666
|
def preset(self) -> typing.Optional[builtins.str]:
|
|
503
|
-
'''
|
|
667
|
+
'''Optional transcode preset for the channel.
|
|
504
668
|
|
|
505
|
-
This is selectable only for
|
|
669
|
+
This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
|
506
670
|
|
|
507
671
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html#cfn-ivs-channel-preset
|
|
508
672
|
'''
|
|
@@ -511,11 +675,9 @@ class CfnChannelProps:
|
|
|
511
675
|
|
|
512
676
|
@builtins.property
|
|
513
677
|
def recording_configuration_arn(self) -> typing.Optional[builtins.str]:
|
|
514
|
-
'''
|
|
515
|
-
|
|
516
|
-
An empty string indicates that recording is disabled for the channel. A RecordingConfiguration ARN indicates that recording is enabled using the specified recording configuration. See the `RecordingConfiguration <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-recordingconfiguration.html>`_ resource for more information and an example.
|
|
678
|
+
'''Recording Configuration ARN.
|
|
517
679
|
|
|
518
|
-
|
|
680
|
+
A value other than an empty string indicates that recording is enabled. Default: "" (recording is disabled).
|
|
519
681
|
|
|
520
682
|
:default: - ""
|
|
521
683
|
|
|
@@ -526,9 +688,7 @@ class CfnChannelProps:
|
|
|
526
688
|
|
|
527
689
|
@builtins.property
|
|
528
690
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
529
|
-
'''
|
|
530
|
-
|
|
531
|
-
For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-tag.html>`_ .
|
|
691
|
+
'''A list of key-value pairs that contain metadata for the asset model.
|
|
532
692
|
|
|
533
693
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-channel.html#cfn-ivs-channel-tags
|
|
534
694
|
'''
|
|
@@ -537,21 +697,9 @@ class CfnChannelProps:
|
|
|
537
697
|
|
|
538
698
|
@builtins.property
|
|
539
699
|
def type(self) -> typing.Optional[builtins.str]:
|
|
540
|
-
'''
|
|
541
|
-
|
|
542
|
-
*If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately.* Valid values:
|
|
543
|
-
|
|
544
|
-
- ``STANDARD`` : Video is transcoded: multiple qualities are generated from the original input to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through.
|
|
545
|
-
- ``BASIC`` : Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
|
|
546
|
-
- ``ADVANCED_SD`` : Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at SD quality (480p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available.
|
|
547
|
-
- ``ADVANCED_HD`` : Video is transcoded; multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Input resolution can be up to 1080p and bitrate can be up to 8.5 Mbps; output is capped at HD quality (720p). You can select an optional transcode preset (see below). Audio for all renditions is transcoded, and an audio-only rendition is available.
|
|
700
|
+
'''Channel type, which determines the allowable resolution and bitrate.
|
|
548
701
|
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
- *Constrained bandwidth delivery* uses a lower bitrate for each quality level. Use it if you have low download bandwidth and/or simple video content (e.g., talking heads)
|
|
552
|
-
- *Higher bandwidth delivery* uses a higher bitrate for each quality level. Use it if you have high download bandwidth and/or complex video content (e.g., flashes and quick scene changes).
|
|
553
|
-
|
|
554
|
-
*Default* : ``STANDARD``
|
|
702
|
+
If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately.
|
|
555
703
|
|
|
556
704
|
:default: - "STANDARD"
|
|
557
705
|
|
|
@@ -1386,7 +1534,7 @@ class CfnPlaybackKeyPair(
|
|
|
1386
1534
|
:param scope: Scope in which this resource is defined.
|
|
1387
1535
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1388
1536
|
:param name: Playback-key-pair name. The value does not need to be unique.
|
|
1389
|
-
:param public_key_material: The public portion of a customer-generated key pair.
|
|
1537
|
+
:param public_key_material: The public portion of a customer-generated key pair. Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.
|
|
1390
1538
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-playbackkeypair-tag.html>`_ .
|
|
1391
1539
|
'''
|
|
1392
1540
|
if __debug__:
|
|
@@ -1522,7 +1670,7 @@ class CfnPlaybackKeyPairProps:
|
|
|
1522
1670
|
'''Properties for defining a ``CfnPlaybackKeyPair``.
|
|
1523
1671
|
|
|
1524
1672
|
:param name: Playback-key-pair name. The value does not need to be unique.
|
|
1525
|
-
:param public_key_material: The public portion of a customer-generated key pair.
|
|
1673
|
+
:param public_key_material: The public portion of a customer-generated key pair. Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.
|
|
1526
1674
|
:param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-playbackkeypair-tag.html>`_ .
|
|
1527
1675
|
|
|
1528
1676
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html
|
|
@@ -1571,6 +1719,8 @@ class CfnPlaybackKeyPairProps:
|
|
|
1571
1719
|
def public_key_material(self) -> typing.Optional[builtins.str]:
|
|
1572
1720
|
'''The public portion of a customer-generated key pair.
|
|
1573
1721
|
|
|
1722
|
+
Note that this field is required to create the AWS::IVS::PlaybackKeyPair resource.
|
|
1723
|
+
|
|
1574
1724
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-playbackkeypair.html#cfn-ivs-playbackkeypair-publickeymaterial
|
|
1575
1725
|
'''
|
|
1576
1726
|
result = self._values.get("public_key_material")
|
|
@@ -1971,7 +2121,7 @@ class CfnPublicKey(
|
|
|
1971
2121
|
:param scope: Scope in which this resource is defined.
|
|
1972
2122
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1973
2123
|
:param name: Public key name. The value does not need to be unique.
|
|
1974
|
-
:param public_key_material: The public portion of a customer-generated key pair.
|
|
2124
|
+
:param public_key_material: The public portion of a customer-generated key pair. Note that this field is required to create the AWS::IVS::PublicKey resource.
|
|
1975
2125
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
1976
2126
|
'''
|
|
1977
2127
|
if __debug__:
|
|
@@ -2107,7 +2257,7 @@ class CfnPublicKeyProps:
|
|
|
2107
2257
|
'''Properties for defining a ``CfnPublicKey``.
|
|
2108
2258
|
|
|
2109
2259
|
:param name: Public key name. The value does not need to be unique.
|
|
2110
|
-
:param public_key_material: The public portion of a customer-generated key pair.
|
|
2260
|
+
:param public_key_material: The public portion of a customer-generated key pair. Note that this field is required to create the AWS::IVS::PublicKey resource.
|
|
2111
2261
|
:param tags: An array of key-value pairs to apply to this resource.
|
|
2112
2262
|
|
|
2113
2263
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html
|
|
@@ -2156,6 +2306,8 @@ class CfnPublicKeyProps:
|
|
|
2156
2306
|
def public_key_material(self) -> typing.Optional[builtins.str]:
|
|
2157
2307
|
'''The public portion of a customer-generated key pair.
|
|
2158
2308
|
|
|
2309
|
+
Note that this field is required to create the AWS::IVS::PublicKey resource.
|
|
2310
|
+
|
|
2159
2311
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#cfn-ivs-publickey-publickeymaterial
|
|
2160
2312
|
'''
|
|
2161
2313
|
result = self._values.get("public_key_material")
|
|
@@ -3832,8 +3984,10 @@ def _typecheckingstub__998485c6924ca07e096c10b7976e238a36e5cfb75264ee66a67de4723
|
|
|
3832
3984
|
id: builtins.str,
|
|
3833
3985
|
*,
|
|
3834
3986
|
authorized: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3987
|
+
container_format: typing.Optional[builtins.str] = None,
|
|
3835
3988
|
insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3836
3989
|
latency_mode: typing.Optional[builtins.str] = None,
|
|
3990
|
+
multitrack_input_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MultitrackInputConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3837
3991
|
name: typing.Optional[builtins.str] = None,
|
|
3838
3992
|
preset: typing.Optional[builtins.str] = None,
|
|
3839
3993
|
recording_configuration_arn: typing.Optional[builtins.str] = None,
|
|
@@ -3861,6 +4015,12 @@ def _typecheckingstub__9e83b3a70b60de37a8aabc9c019b31db83c549e80f9c9c88a5b74fde7
|
|
|
3861
4015
|
"""Type checking stubs"""
|
|
3862
4016
|
pass
|
|
3863
4017
|
|
|
4018
|
+
def _typecheckingstub__c5da102677f3042d402ff70f74aee693c78470595fd1a7c9b4900403983f7b74(
|
|
4019
|
+
value: typing.Optional[builtins.str],
|
|
4020
|
+
) -> None:
|
|
4021
|
+
"""Type checking stubs"""
|
|
4022
|
+
pass
|
|
4023
|
+
|
|
3864
4024
|
def _typecheckingstub__734c5e1f9cdeabe74fb1ade992399b475d1594cbcdfd026823e8984eaa2d4eab(
|
|
3865
4025
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
3866
4026
|
) -> None:
|
|
@@ -3873,6 +4033,12 @@ def _typecheckingstub__dd2cfeff050510b655ecd39d0e3b95c3c9e2af649e77e0903ad721d0f
|
|
|
3873
4033
|
"""Type checking stubs"""
|
|
3874
4034
|
pass
|
|
3875
4035
|
|
|
4036
|
+
def _typecheckingstub__012c045fd3860567ed6aa28435a35d575d1dc0a881855d124b21f2d76102ba73(
|
|
4037
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.MultitrackInputConfigurationProperty]],
|
|
4038
|
+
) -> None:
|
|
4039
|
+
"""Type checking stubs"""
|
|
4040
|
+
pass
|
|
4041
|
+
|
|
3876
4042
|
def _typecheckingstub__15776afbbb29227b4807e807447939235926366be32ef5acc331c74f0acd9b41(
|
|
3877
4043
|
value: typing.Optional[builtins.str],
|
|
3878
4044
|
) -> None:
|
|
@@ -3903,11 +4069,22 @@ def _typecheckingstub__0be9a3a6192cfd130520f4e6ecd8c9091b1a8b4312f716182989ea3fe
|
|
|
3903
4069
|
"""Type checking stubs"""
|
|
3904
4070
|
pass
|
|
3905
4071
|
|
|
4072
|
+
def _typecheckingstub__50f1752d428e0d083b8ac0b36e82de6eba9749ea58d877e914d9e63a503364d1(
|
|
4073
|
+
*,
|
|
4074
|
+
enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4075
|
+
maximum_resolution: typing.Optional[builtins.str] = None,
|
|
4076
|
+
policy: typing.Optional[builtins.str] = None,
|
|
4077
|
+
) -> None:
|
|
4078
|
+
"""Type checking stubs"""
|
|
4079
|
+
pass
|
|
4080
|
+
|
|
3906
4081
|
def _typecheckingstub__61646017dba4df4ec5b97fde61911670aebc6b8151847b927754a4e9c110979d(
|
|
3907
4082
|
*,
|
|
3908
4083
|
authorized: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4084
|
+
container_format: typing.Optional[builtins.str] = None,
|
|
3909
4085
|
insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3910
4086
|
latency_mode: typing.Optional[builtins.str] = None,
|
|
4087
|
+
multitrack_input_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.MultitrackInputConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3911
4088
|
name: typing.Optional[builtins.str] = None,
|
|
3912
4089
|
preset: typing.Optional[builtins.str] = None,
|
|
3913
4090
|
recording_configuration_arn: typing.Optional[builtins.str] = None,
|