interface LegacyS3OriginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.CfnDistribution.LegacyS3OriginProperty |
Java | software.amazon.awscdk.services.cloudfront.CfnDistribution.LegacyS3OriginProperty |
Python | aws_cdk.aws_cloudfront.CfnDistribution.LegacyS3OriginProperty |
TypeScript | @aws-cdk/aws-cloudfront » CfnDistribution » LegacyS3OriginProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloudfront from '@aws-cdk/aws-cloudfront';
const legacyS3OriginProperty: cloudfront.CfnDistribution.LegacyS3OriginProperty = {
dnsName: 'dnsName',
// the properties below are optional
originAccessIdentity: 'originAccessIdentity',
};
Properties
| Name | Type | Description |
|---|---|---|
| dns | string | CfnDistribution.LegacyS3OriginProperty.DNSName. |
| origin | string | CfnDistribution.LegacyS3OriginProperty.OriginAccessIdentity. |
dnsName
Type:
string
CfnDistribution.LegacyS3OriginProperty.DNSName.
originAccessIdentity?
Type:
string
(optional)
CfnDistribution.LegacyS3OriginProperty.OriginAccessIdentity.

.NET
Java
Python
TypeScript