interface CfnAssetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaPackage.Mixins.CfnAssetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediapackage/mixins#CfnAssetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediapackage.mixins.CfnAssetMixinProps |
Python | aws_cdk.mixins_preview.aws_mediapackage.mixins.CfnAssetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediapackage » mixins » CfnAssetMixinProps |
Properties for CfnAssetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackage-asset.html
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 cfnAssetMixinProps: mediapackage_mixins.CfnAssetMixinProps = {
egressEndpoints: [{
packagingConfigurationId: 'packagingConfigurationId',
url: 'url',
}],
id: 'id',
packagingGroupId: 'packagingGroupId',
resourceId: 'resourceId',
sourceArn: 'sourceArn',
sourceRoleArn: 'sourceRoleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | IResolvable | (IResolvable | Egress)[] | List of playback endpoints that are available for this asset. |
| id? | string | Unique identifier that you assign to the asset. |
| packaging | string | The ID of the packaging group associated with this asset. |
| resource | string | Unique identifier for this asset, as it's configured in the key provider service. |
| source | string | The ARN for the source content in Amazon S3. |
| source | string | The ARN for the IAM role that provides AWS Elemental MediaPackage access to the Amazon S3 bucket where the source content is stored. |
| tags? | Cfn[] | The tags to assign to the asset. |
egressEndpoints?
Type:
IResolvable | (IResolvable | Egress)[]
(optional)
List of playback endpoints that are available for this asset.
id?
Type:
string
(optional)
Unique identifier that you assign to the asset.
packagingGroupId?
Type:
string
(optional)
The ID of the packaging group associated with this asset.
resourceId?
Type:
string
(optional)
Unique identifier for this asset, as it's configured in the key provider service.
sourceArn?
Type:
string
(optional)
The ARN for the source content in Amazon S3.
sourceRoleArn?
Type:
string
(optional)
The ARN for the IAM role that provides AWS Elemental MediaPackage access to the Amazon S3 bucket where the source content is stored.
Valid format: arn:aws:iam::{accountID}:role/{name}
tags?
Type:
Cfn[]
(optional)
The tags to assign to the asset.

.NET
Go
Java
Python
TypeScript