CfnSdiSourceProps
- class aws_cdk.aws_medialive.CfnSdiSourceProps(*, name, type, mode=None, tags=None)
Bases:
objectProperties for defining a
CfnSdiSource.- Parameters:
name (
str) – The name of the SdiSource.type (
str) – The interface mode of the SdiSource.mode (
Optional[str]) – The current state of the SdiSource.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A collection of key-value pairs.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_medialive as medialive cfn_sdi_source_props = medialive.CfnSdiSourceProps( name="name", type="type", # the properties below are optional mode="mode", tags=[CfnTag( key="key", value="value" )] )
Attributes
- mode
The current state of the SdiSource.
- name
The name of the SdiSource.
- tags
A collection of key-value pairs.
- type
The interface mode of the SdiSource.