CfnLiveSourceProps

class aws_cdk.aws_mediatailor.CfnLiveSourceProps(*, http_package_configurations, live_source_name, source_location_name, tags=None)

Bases: object

Properties for defining a CfnLiveSource.

Parameters:
  • http_package_configurations (Union[IResolvable, Sequence[Union[IResolvable, HttpPackageConfigurationProperty, Dict[str, Any]]]]) – The HTTP package configurations for the live source.

  • live_source_name (str) – The name that’s used to refer to a live source.

  • source_location_name (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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.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_mediatailor as mediatailor

cfn_live_source_props = mediatailor.CfnLiveSourceProps(
    http_package_configurations=[mediatailor.CfnLiveSource.HttpPackageConfigurationProperty(
        path="path",
        source_group="sourceGroup",
        type="type"
    )],
    live_source_name="liveSourceName",
    source_location_name="sourceLocationName",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

http_package_configurations

The HTTP package configurations for the live source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-httppackageconfigurations

live_source_name

The name that’s used to refer to a live source.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-livesourcename

source_location_name

The name of the source location.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-sourcelocationname

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-livesource.html#cfn-mediatailor-livesource-tags