interface S3LoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins.CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsathena/mixins#CfnWorkGroupPropsMixin_S3LoggingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.athena.mixins.CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_athena.mixins.CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_athena » mixins » CfnWorkGroupPropsMixin » S3LoggingConfigurationProperty |
Configuration settings for delivering logs to Amazon S3 buckets.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as athena_mixins } from '@aws-cdk/mixins-preview/aws-athena';
const s3LoggingConfigurationProperty: athena_mixins.CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty = {
enabled: false,
kmsKey: 'kmsKey',
logLocation: 'logLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Enables S3 log delivery. |
| kms | string | The KMS key ARN to encrypt the logs published to the given Amazon S3 destination. |
| log | string | The Amazon S3 destination URI for log publishing. |
enabled?
Type:
boolean | IResolvable
(optional)
Enables S3 log delivery.
kmsKey?
Type:
string
(optional)
The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
logLocation?
Type:
string
(optional)
The Amazon S3 destination URI for log publishing.

.NET
Go
Java
Python
TypeScript