interface StreamReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.KinesisVideo.StreamReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awskinesisvideo#StreamReference |
Java | software.amazon.awscdk.interfaces.kinesisvideo.StreamReference |
Python | aws_cdk.interfaces.aws_kinesisvideo.StreamReference |
TypeScript | aws-cdk-lib » interfaces » aws_kinesisvideo » StreamReference |
A reference to a Stream resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisvideo as interfaces_aws_kinesisvideo } from 'aws-cdk-lib/interfaces';
const streamReference: interfaces_aws_kinesisvideo.StreamReference = {
streamArn: 'streamArn',
streamName: 'streamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| stream | string | The ARN of the Stream resource. |
| stream | string | The Name of the Stream resource. |
streamArn
Type:
string
The ARN of the Stream resource.
streamName
Type:
string
The Name of the Stream resource.

.NET
Go
Java
Python
TypeScript