interface PackagingGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaPackage.PackagingGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediapackage#PackagingGroupReference |
Java | software.amazon.awscdk.interfaces.mediapackage.PackagingGroupReference |
Python | aws_cdk.interfaces.aws_mediapackage.PackagingGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediapackage » PackagingGroupReference |
A reference to a PackagingGroup 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 packagingGroupReference: interfaces_aws_mediapackage.PackagingGroupReference = {
packagingGroupArn: 'packagingGroupArn',
packagingGroupId: 'packagingGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| packaging | string | The ARN of the PackagingGroup resource. |
| packaging | string | The Id of the PackagingGroup resource. |
packagingGroupArn
Type:
string
The ARN of the PackagingGroup resource.
packagingGroupId
Type:
string
The Id of the PackagingGroup resource.

.NET
Go
Java
Python
TypeScript