interface ContainerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaStore.ContainerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediastore#ContainerReference |
Java | software.amazon.awscdk.services.mediastore.ContainerReference |
Python | aws_cdk.aws_mediastore.ContainerReference |
TypeScript | aws-cdk-lib » aws_mediastore » ContainerReference |
A reference to a Container resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediastore as mediastore } from 'aws-cdk-lib';
const containerReference: mediastore.ContainerReference = {
containerId: 'containerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | The Id of the Container resource. |
containerId
Type:
string
The Id of the Container resource.

.NET
Go
Java
Python
TypeScript