interface CfnStreamKeyProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IVS.CfnStreamKeyProps | 
|  Java | software.amazon.awscdk.services.ivs.CfnStreamKeyProps | 
|  Python | aws_cdk.aws_ivs.CfnStreamKeyProps | 
|  TypeScript | @aws-cdk/aws-ivs»CfnStreamKeyProps | 
Properties for defining a CfnStreamKey.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ivs from '@aws-cdk/aws-ivs';
const cfnStreamKeyProps: ivs.CfnStreamKeyProps = {
  channelArn: 'channelArn',
  // the properties below are optional
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| channel | string | Channel ARN for the stream. | 
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. | 
channelArn
Type:
string
Channel ARN for the stream.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
