interface CfnLiveSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnLiveSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnLiveSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnLiveSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnLiveSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » 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 { mixins as mediatailor_mixins } from '@aws-cdk/mixins-preview/aws-mediatailor';
const cfnLiveSourceMixinProps: mediatailor_mixins.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