interface PackagingConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaPackage.PackagingConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediapackage#PackagingConfigurationReference |
Java | software.amazon.awscdk.interfaces.mediapackage.PackagingConfigurationReference |
Python | aws_cdk.interfaces.aws_mediapackage.PackagingConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediapackage » PackagingConfigurationReference |
A reference to a PackagingConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediapackage as interfaces_aws_mediapackage } from 'aws-cdk-lib/interfaces';
const packagingConfigurationReference: interfaces_aws_mediapackage.PackagingConfigurationReference = {
packagingConfigurationArn: 'packagingConfigurationArn',
packagingConfigurationId: 'packagingConfigurationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| packaging | string | The ARN of the PackagingConfiguration resource. |
| packaging | string | The Id of the PackagingConfiguration resource. |
packagingConfigurationArn
Type:
string
The ARN of the PackagingConfiguration resource.
packagingConfigurationId
Type:
string
The Id of the PackagingConfiguration resource.

.NET
Go
Java
Python
TypeScript