interface CfnProfileRoute53ProfilesResolverQueryLogsS3Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Profiles.Mixins.CfnProfileRoute53ProfilesResolverQueryLogsS3Props |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53profiles/mixins#CfnProfileRoute53ProfilesResolverQueryLogsS3Props |
Java | software.amazon.awscdk.mixins.preview.services.route53profiles.mixins.CfnProfileRoute53ProfilesResolverQueryLogsS3Props |
Python | aws_cdk.mixins_preview.aws_route53profiles.mixins.CfnProfileRoute53ProfilesResolverQueryLogsS3Props |
TypeScript | @aws-cdk/mixins-preview ยป aws_route53profiles ยป mixins ยป CfnProfileRoute53ProfilesResolverQueryLogsS3Props |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53profiles_mixins } from '@aws-cdk/mixins-preview/aws-route53profiles';
import { aws_kms as interfaces_kms } from 'aws-cdk-lib/interfaces';
declare const keyRef: interfaces_kms.IKeyRef;
const cfnProfileRoute53ProfilesResolverQueryLogsS3Props: route53profiles_mixins.CfnProfileRoute53ProfilesResolverQueryLogsS3Props = {
encryptionKey: keyRef,
outputFormat: route53profiles_mixins.CfnProfileRoute53ProfilesResolverQueryLogsOutputFormat.S3.JSON,
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IKey | Encrpytion key for your delivery bucket. |
| output | S3 | Format for log output, options are json,plain,w3c,parquet. |
encryptionKey?
Type:
IKey
(optional)
Encrpytion key for your delivery bucket.
outputFormat?
Type:
S3
(optional)
Format for log output, options are json,plain,w3c,parquet.

.NET
Go
Java
Python
TypeScript