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

.NET
Go
Java
Python
TypeScript