interface CfnLiveSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnLiveSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnLiveSourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnLiveSourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnLiveSourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » CfnLiveSourceMixinProps |
Properties for CfnLiveSourcePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from '@aws-cdk/cfn-property-mixins';
const cfnLiveSourceMixinProps: mediatailor.CfnLiveSourceMixinProps = {
httpPackageConfigurations: [{
path: 'path',
sourceGroup: 'sourceGroup',
type: 'type',
}],
liveSourceName: 'liveSourceName',
sourceLocationName: 'sourceLocationName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| http | IResolvable | (IResolvable | Http)[] | The HTTP package configurations for the live source. |
| live | string | The name that's used to refer to a live source. |
| source | string | The name of the source location. |
| tags? | Cfn[] | The tags assigned to the live source. |
httpPackageConfigurations?
Type:
IResolvable | (IResolvable | Http)[]
(optional)
The HTTP package configurations for the live source.
liveSourceName?
Type:
string
(optional)
The name that's used to refer to a live source.
sourceLocationName?
Type:
string
(optional)
The name of the source location.
tags?
Type:
Cfn[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript