Interface CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnImagePipelinePropsMixin
@Stability(Stable)
public static interface CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The logging configuration that's defined for pipeline execution.
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.*;
PipelineLoggingConfigurationProperty pipelineLoggingConfigurationProperty = PipelineLoggingConfigurationProperty.builder()
.imageLogGroupName("imageLogGroupName")
.pipelineLogGroupName("pipelineLogGroupName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageLogGroupName
The log group name that Image Builder uses for image creation.If not specified, the log group name defaults to
/aws/imagebuilder/image-name.- See Also:
-
getPipelineLogGroupName
The log group name that Image Builder uses for the log output during creation of a new pipeline.If not specified, the pipeline log group name defaults to
/aws/imagebuilder/pipeline/pipeline-name.- See Also:
-
builder
@Stability(Stable) static CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty.Builder builder()
-