aws-cdk-lib.aws_cloudfront.CfnStreamingDistribution.S3OriginProperty

interface S3OriginProperty

LanguageType name
.NETAmazon.CDK.AWS.CloudFront.CfnStreamingDistribution.S3OriginProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#CfnStreamingDistribution_S3OriginProperty
Javasoftware.amazon.awscdk.services.cloudfront.CfnStreamingDistribution.S3OriginProperty
Pythonaws_cdk.aws_cloudfront.CfnStreamingDistribution.S3OriginProperty
TypeScript aws-cdk-lib » aws_cloudfront » CfnStreamingDistribution » S3OriginProperty

A complex type that contains information about the Amazon S3 bucket from which you want CloudFront to get your media files for distribution.

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-lib';
const s3OriginProperty: cloudfront.CfnStreamingDistribution.S3OriginProperty = {
  domainName: 'domainName',
  originAccessIdentity: 'originAccessIdentity',
};

Properties

NameTypeDescription
domainNamestringThe DNS name of the Amazon S3 origin.
originAccessIdentitystringThe CloudFront origin access identity to associate with the distribution.

domainName

Type: string

The DNS name of the Amazon S3 origin.


originAccessIdentity

Type: string

The CloudFront origin access identity to associate with the distribution.

Use an origin access identity to configure the distribution so that end users can only access objects in an Amazon S3 bucket through CloudFront.

If you want end users to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element.

To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element.

To replace the origin access identity, update the distribution configuration and specify the new origin access identity.

For more information, see Using an Origin Access Identity to Restrict Access to Your Amazon S3 Content in the Amazon CloudFront Developer Guide .