interface StreamProcessorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Rekognition.StreamProcessorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrekognition#StreamProcessorReference |
Java | software.amazon.awscdk.interfaces.rekognition.StreamProcessorReference |
Python | aws_cdk.interfaces.aws_rekognition.StreamProcessorReference |
TypeScript | aws-cdk-lib » interfaces » aws_rekognition » StreamProcessorReference |
A reference to a StreamProcessor resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rekognition as interfaces_rekognition } from 'aws-cdk-lib/interfaces';
const streamProcessorReference: interfaces_rekognition.StreamProcessorReference = {
streamProcessorArn: 'streamProcessorArn',
streamProcessorName: 'streamProcessorName',
};
Properties
| Name | Type | Description |
|---|---|---|
| stream | string | The ARN of the StreamProcessor resource. |
| stream | string | The Name of the StreamProcessor resource. |
streamProcessorArn
Type:
string
The ARN of the StreamProcessor resource.
streamProcessorName
Type:
string
The Name of the StreamProcessor resource.

.NET
Go
Java
Python
TypeScript