interface HttpPackageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaTailor.Mixins.CfnLiveSourcePropsMixin.HttpPackageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediatailor/mixins#CfnLiveSourcePropsMixin_HttpPackageConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediatailor.mixins.CfnLiveSourcePropsMixin.HttpPackageConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediatailor.mixins.CfnLiveSourcePropsMixin.HttpPackageConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediatailor » mixins » CfnLiveSourcePropsMixin » HttpPackageConfigurationProperty |
The HTTP package configuration properties for the requested VOD source.
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 httpPackageConfigurationProperty: mediatailor_mixins.CfnLiveSourcePropsMixin.HttpPackageConfigurationProperty = {
path: 'path',
sourceGroup: 'sourceGroup',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| path? | string | The relative path to the URL for this VOD source. |
| source | string | The name of the source group. |
| type? | string | The streaming protocol for this package configuration. |
path?
Type:
string
(optional)
The relative path to the URL for this VOD source.
This is combined with SourceLocation::HttpConfiguration::BaseUrl to form a valid URL.
sourceGroup?
Type:
string
(optional)
The name of the source group.
This has to match one of the Channel::Outputs::SourceGroup .
type?
Type:
string
(optional)
The streaming protocol for this package configuration.
Supported values are HLS and DASH .

.NET
Go
Java
Python
TypeScript