Interface CfnInfrastructureConfigurationPropsMixin.LoggingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInfrastructureConfigurationPropsMixin.LoggingProperty.Jsii$Proxy
- Enclosing class:
CfnInfrastructureConfigurationPropsMixin
@Stability(Stable)
public static interface CfnInfrastructureConfigurationPropsMixin.LoggingProperty
extends software.amazon.jsii.JsiiSerializable
Logging configuration defines where Image Builder uploads your logs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.*;
LoggingProperty loggingProperty = LoggingProperty.builder()
.s3Logs(S3LogsProperty.builder()
.s3BucketName("s3BucketName")
.s3KeyPrefix("s3KeyPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInfrastructureConfigurationPropsMixin.LoggingPropertystatic final classAn implementation forCfnInfrastructureConfigurationPropsMixin.LoggingProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Logs
The Amazon S3 logging configuration.Returns union: either
IResolvableorCfnInfrastructureConfigurationPropsMixin.S3LogsProperty- See Also:
-
builder
@Stability(Stable) static CfnInfrastructureConfigurationPropsMixin.LoggingProperty.Builder builder()
-