interface SdiSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaLive.SdiSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmedialive#SdiSourceReference |
Java | software.amazon.awscdk.interfaces.medialive.SdiSourceReference |
Python | aws_cdk.interfaces.aws_medialive.SdiSourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_medialive » SdiSourceReference |
A reference to a SdiSource 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_medialive } from 'aws-cdk-lib/interfaces';
const sdiSourceReference: interfaces_medialive.SdiSourceReference = {
sdiSourceArn: 'sdiSourceArn',
sdiSourceId: 'sdiSourceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| sdi | string | The ARN of the SdiSource resource. |
| sdi | string | The Id of the SdiSource resource. |
sdiSourceArn
Type:
string
The ARN of the SdiSource resource.
sdiSourceId
Type:
string
The Id of the SdiSource resource.

.NET
Go
Java
Python
TypeScript