CfnLiveSourceMixinProps
- class aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnLiveSourceMixinProps(*, http_package_configurations=None, live_source_name=None, source_location_name=None, tags=None)
Bases:
objectProperties for CfnLiveSourcePropsMixin.
- Parameters:
http_package_configurations (
Union[IResolvable,Sequence[Union[IResolvable,HttpPackageConfigurationProperty,Dict[str,Any]]],None]) – The HTTP package configurations for the live source.live_source_name (
Optional[str]) – The name that’s used to refer to a live source.source_location_name (
Optional[str]) – The name of the source location.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags assigned to the live source. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources .
- See:
- 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.mixins_preview.aws_mediatailor import mixins as mediatailor_mixins cfn_live_source_mixin_props = mediatailor_mixins.CfnLiveSourceMixinProps( http_package_configurations=[mediatailor_mixins.CfnLiveSourcePropsMixin.HttpPackageConfigurationProperty( path="path", source_group="sourceGroup", type="type" )], live_source_name="liveSourceName", source_location_name="sourceLocationName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- http_package_configurations
The HTTP package configurations for the live source.
- live_source_name
The name that’s used to refer to a live source.
- source_location_name
The name of the source location.
- tags
The tags assigned to the live source.
Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see Tagging AWS Elemental MediaTailor Resources .