interface CfnVodSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnVodSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnVodSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnVodSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnVodSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnVodSourceMixinProps |
Properties for CfnVodSourcePropsMixin.
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 cfnVodSourceMixinProps: mediatailor_mixins.CfnVodSourceMixinProps = {
httpPackageConfigurations: [{
path: 'path',
sourceGroup: 'sourceGroup',
type: 'type',
}],
sourceLocationName: 'sourceLocationName',
tags: [{
key: 'key',
value: 'value',
}],
vodSourceName: 'vodSourceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| http | IResolvable | (IResolvable | Http)[] | The HTTP package configurations for the VOD source. |
| source | string | The name of the source location that the VOD source is associated with. |
| tags? | Cfn[] | The tags assigned to the VOD source. |
| vod | string | The name of the VOD source. |
httpPackageConfigurations?
Type:
IResolvable | (IResolvable | Http)[]
(optional)
The HTTP package configurations for the VOD source.
sourceLocationName?
Type:
string
(optional)
The name of the source location that the VOD source is associated with.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the VOD 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 .
vodSourceName?
Type:
string
(optional)
The name of the VOD source.

.NET
Go
Java
Python
TypeScript