interface CfnStreamingDistributionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnStreamingDistributionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnStreamingDistributionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnStreamingDistributionMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnStreamingDistributionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » 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 { mixins as cloudfront_mixins } from '@aws-cdk/mixins-preview/aws-cloudfront';
const cfnStreamingDistributionMixinProps: cloudfront_mixins.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