interface CfnStreamKeyProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Ivs.CfnStreamKeyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnStreamKeyProps |
Java | software.amazon.awscdk.services.ivs.CfnStreamKeyProps |
Python | aws_cdk.aws_ivs.CfnStreamKeyProps |
TypeScript | aws-cdk-lib » aws_ivs » CfnStreamKeyProps |
Properties for defining a CfnStreamKey.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-streamkey.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ivs as ivs } from 'aws-cdk-lib';
const cfnStreamKeyProps: ivs.CfnStreamKeyProps = {
channelArn: 'channelArn',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | IChannel | Channel ARN for the stream. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
channelArn
Type:
string | IChannel
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 .

.NET
Go
Java
Python
TypeScript