Interface CfnWorkGroup.S3LoggingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkGroup.S3LoggingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnWorkGroup
@Stability(Stable)
public static interface CfnWorkGroup.S3LoggingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.athena.*;
S3LoggingConfigurationProperty s3LoggingConfigurationProperty = S3LoggingConfigurationProperty.builder()
.enabled(false)
.kmsKey("kmsKey")
.logLocation("logLocation")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkGroup.S3LoggingConfigurationPropertystatic final classAn implementation forCfnWorkGroup.S3LoggingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Enables S3 log delivery.Returns union: either
BooleanorIResolvable- See Also:
-
getKmsKey
The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.- See Also:
-
getLogLocation
The Amazon S3 destination URI for log publishing.- See Also:
-
builder
-