interface EgressEndpointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins.CfnAssetPropsMixin.EgressEndpointProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/mixins#CfnAssetPropsMixin_EgressEndpointProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.mixins.CfnAssetPropsMixin.EgressEndpointProperty |
Python | aws_cdk.mixins_preview.aws_mediapackage.mixins.CfnAssetPropsMixin.EgressEndpointProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackage » mixins » CfnAssetPropsMixin » EgressEndpointProperty |
The playback endpoint for a packaging configuration on an asset.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediapackage_mixins } from '@aws-cdk/mixins-preview/aws-mediapackage';
const egressEndpointProperty: mediapackage_mixins.CfnAssetPropsMixin.EgressEndpointProperty = {
packagingConfigurationId: 'packagingConfigurationId',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| packaging | string | The ID of a packaging configuration that's applied to this asset. |
| url? | string | The URL that's used to request content from this endpoint. |
packagingConfigurationId?
Type:
string
(optional)
The ID of a packaging configuration that's applied to this asset.
url?
Type:
string
(optional)
The URL that's used to request content from this endpoint.

.NET
Go
Java
Python
TypeScript