interface PlaybackConfigurationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaTailor.PlaybackConfigurationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediatailor#PlaybackConfigurationReference |
Java | software.amazon.awscdk.interfaces.mediatailor.PlaybackConfigurationReference |
Python | aws_cdk.interfaces.aws_mediatailor.PlaybackConfigurationReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediatailor » PlaybackConfigurationReference |
A reference to a PlaybackConfiguration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as interfaces_mediatailor } from 'aws-cdk-lib/interfaces';
const playbackConfigurationReference: interfaces_mediatailor.PlaybackConfigurationReference = {
playbackConfigurationArn: 'playbackConfigurationArn',
playbackConfigurationName: 'playbackConfigurationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| playback | string | The ARN of the PlaybackConfiguration resource. |
| playback | string | The Name of the PlaybackConfiguration resource. |
playbackConfigurationArn
Type:
string
The ARN of the PlaybackConfiguration resource.
playbackConfigurationName
Type:
string
The Name of the PlaybackConfiguration resource.

.NET
Go
Java
Python
TypeScript