interface StreamingDistributionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnStreamingDistributionPropsMixin.StreamingDistributionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnStreamingDistributionPropsMixin_StreamingDistributionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnStreamingDistributionPropsMixin.StreamingDistributionConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnStreamingDistributionPropsMixin.StreamingDistributionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnStreamingDistributionPropsMixin » StreamingDistributionConfigProperty |
The RTMP distribution's configuration information.
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 streamingDistributionConfigProperty: cloudfront_mixins.CfnStreamingDistributionPropsMixin.StreamingDistributionConfigProperty = {
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,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aliases? | string[] | A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution. |
| comment? | string | Any comments you want to include about the streaming distribution. |
| enabled? | boolean | IResolvable | Whether the streaming distribution is enabled to accept user requests for content. |
| logging? | IResolvable | Logging | A complex type that controls whether access logs are written for the streaming distribution. |
| price | string | A complex type that contains information about price class for this streaming distribution. |
| s3 | IResolvable | S3 | A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution. |
| trusted | IResolvable | Trusted | A complex type that specifies any AWS accounts that you want to permit to create signed URLs for private content. |
aliases?
Type:
string[]
(optional)
A complex type that contains information about CNAMEs (alternate domain names), if any, for this streaming distribution.
comment?
Type:
string
(optional)
Any comments you want to include about the streaming distribution.
enabled?
Type:
boolean | IResolvable
(optional)
Whether the streaming distribution is enabled to accept user requests for content.
logging?
Type:
IResolvable | Logging
(optional)
A complex type that controls whether access logs are written for the streaming distribution.
priceClass?
Type:
string
(optional)
A complex type that contains information about price class for this streaming distribution.
s3Origin?
Type:
IResolvable | S3
(optional)
A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.
trustedSigners?
Type:
IResolvable | Trusted
(optional)
A complex type that specifies any AWS accounts that you want to permit to create signed URLs for private content.
If you want the distribution to use signed URLs, include this element; if you want the distribution to use public URLs, remove this element. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide .

.NET
Go
Java
Python
TypeScript