interface CfnVodSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaTailor.CfnVodSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediatailor#CfnVodSourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediatailor.CfnVodSourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediatailor.CfnVodSourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediatailor » 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 { aws_mediatailor as mediatailor } from '@aws-cdk/cfn-property-mixins';
const cfnVodSourceMixinProps: mediatailor.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