interface S3LoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Athena.CfnWorkGroup.S3LoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsathena#CfnWorkGroup_S3LoggingConfigurationProperty |
Java | software.amazon.awscdk.services.athena.CfnWorkGroup.S3LoggingConfigurationProperty |
Python | aws_cdk.aws_athena.CfnWorkGroup.S3LoggingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_athena » CfnWorkGroup » 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 { aws_athena as athena } from 'aws-cdk-lib';
const s3LoggingConfigurationProperty: athena.CfnWorkGroup.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