interface CfnStreamingDistributionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFront.CfnStreamingDistributionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudfront#CfnStreamingDistributionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudfront.CfnStreamingDistributionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudfront.CfnStreamingDistributionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudfront » CfnStreamingDistributionMixinProps |
Properties for CfnStreamingDistributionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as cloudfront } from '@aws-cdk/cfn-property-mixins';
const cfnStreamingDistributionMixinProps: cloudfront.CfnStreamingDistributionMixinProps = {
streamingDistributionConfig: {
aliases: ['aliases'],
comment: 'comment',
enabled: false,
logging: {
bucket: 'bucket',
enabled: false,
prefix: 'prefix',
},
priceClass: 'priceClass',
s3Origin: {
domainName: 'domainName',
originAccessIdentity: 'originAccessIdentity',
},
trustedSigners: {
awsAccountNumbers: ['awsAccountNumbers'],
enabled: false,
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| streaming | IResolvable | Streaming | The current configuration information for the RTMP distribution. |
| tags? | Cfn[] | A complex type that contains zero or more Tag elements. |
streamingDistributionConfig?
Type:
IResolvable | Streaming
(optional)
The current configuration information for the RTMP distribution.
tags?
Type:
Cfn[]
(optional)
A complex type that contains zero or more Tag elements.

.NET
Go
Java
Python
TypeScript