interface CfnStreamKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnStreamKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnStreamKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnStreamKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnStreamKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » CfnStreamKeyMixinProps |
Properties for CfnStreamKeyPropsMixin.
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/cfn-property-mixins';
const cfnStreamKeyMixinProps: ivs.CfnStreamKeyMixinProps = {
channelArn: 'channelArn',
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
(optional)
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