interface InputReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaLive.InputReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmedialive#InputReference |
Java | software.amazon.awscdk.interfaces.medialive.InputReference |
Python | aws_cdk.interfaces.aws_medialive.InputReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_medialive } from 'aws-cdk-lib/interfaces';
const inputReference: interfaces_aws_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