class CfnDistributionAccessLogs
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFront.Mixins.CfnDistributionAccessLogs |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudfront/mixins#CfnDistributionAccessLogs |
Java | software.amazon.awscdk.mixins.preview.services.cloudfront.mixins.CfnDistributionAccessLogs |
Python | aws_cdk.mixins_preview.aws_cloudfront.mixins.CfnDistributionAccessLogs |
TypeScript | @aws-cdk/mixins-preview » aws_cloudfront » mixins » CfnDistributionAccessLogs |
Builder for CfnDistributionLogsMixin to generate ACCESS_LOGS for CfnDistribution.
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 cfnDistributionAccessLogs = new cloudfront_mixins.CfnDistributionAccessLogs();
Initializer
new CfnDistributionAccessLogs()
Methods
| Name | Description |
|---|---|
| to | Delivers logs to a pre-created delivery destination. |
| to | Send logs to a Firehose Delivery Stream. |
| to | Send logs to a CloudWatch Log Group. |
| to | Send logs to an S3 Bucket. |
toDestination(destination)
public toDestination(destination: IDeliveryDestinationRef): CfnDistributionLogsMixin
Parameters
- destination
IDeliveryDestination Ref
Returns
Delivers logs to a pre-created delivery destination.
Supported destinations are S3, CWL, FH You are responsible for setting up the correct permissions for your delivery destination, toDestination() does not set up any permissions for you. Delivery destinations that are imported from another stack using CfnDeliveryDestination.fromDeliveryDestinationArn() or CfnDeliveryDestination.fromDeliveryDestinationName() are supported by toDestination().
toFirehose(deliveryStream)
public toFirehose(deliveryStream: IDeliveryStreamRef): CfnDistributionLogsMixin
Parameters
- deliveryStream
IDeliveryStream Ref
Returns
Send logs to a Firehose Delivery Stream.
toLogGroup(logGroup)
public toLogGroup(logGroup: ILogGroupRef): CfnDistributionLogsMixin
Parameters
- logGroup
ILogGroup Ref
Returns
Send logs to a CloudWatch Log Group.
toS3(bucket, props?)
public toS3(bucket: IBucketRef, props?: IS3LogsDestinationProps): CfnDistributionLogsMixin
Parameters
- bucket
IBucketRef - props
IS3Logs Destination Props
Returns
Send logs to an S3 Bucket.

.NET
Go
Java
Python
TypeScript