interface LiveSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaTailor.LiveSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmediatailor#LiveSourceReference |
Java | software.amazon.awscdk.interfaces.mediatailor.LiveSourceReference |
Python | aws_cdk.interfaces.aws_mediatailor.LiveSourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_mediatailor » LiveSourceReference |
A reference to a LiveSource 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_aws_mediatailor } from 'aws-cdk-lib/interfaces';
const liveSourceReference: interfaces_aws_mediatailor.LiveSourceReference = {
liveSourceArn: 'liveSourceArn',
liveSourceName: 'liveSourceName',
sourceLocationName: 'sourceLocationName',
};
Properties
| Name | Type | Description |
|---|---|---|
| live | string | The ARN of the LiveSource resource. |
| live | string | The LiveSourceName of the LiveSource resource. |
| source | string | The SourceLocationName of the LiveSource resource. |
liveSourceArn
Type:
string
The ARN of the LiveSource resource.
liveSourceName
Type:
string
The LiveSourceName of the LiveSource resource.
sourceLocationName
Type:
string
The SourceLocationName of the LiveSource resource.

.NET
Go
Java
Python
TypeScript