CfnStreamKeyMixinProps
- class aws_cdk.cfn_property_mixins.aws_ivs.CfnStreamKeyMixinProps(*, channel_arn=None, tags=None)
Bases:
objectProperties for CfnStreamKeyPropsMixin.
- Parameters:
channel_arn (
Union[str,IChannelRef,None]) – Channel ARN for the stream.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-streamkey.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_ivs as ivs cfn_stream_key_mixin_props = ivs.CfnStreamKeyMixinProps( channel_arn="channelArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- channel_arn
Channel ARN for the stream.