interface InputReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.InputReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#InputReference |
Java | software.amazon.awscdk.services.medialive.InputReference |
Python | aws_cdk.aws_medialive.InputReference |
TypeScript | aws-cdk-lib » aws_medialive » InputReference |
A reference to a Input resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const inputReference: medialive.InputReference = {
inputArn: 'inputArn',
inputId: 'inputId',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The ARN of the Input resource. |
| input | string | The Id of the Input resource. |
inputArn
Type:
string
The ARN of the Input resource.
inputId
Type:
string
The Id of the Input resource.

.NET
Go
Java
Python
TypeScript