Class: Aws::Imagebuilder::Types::PipelineLoggingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::PipelineLoggingConfiguration
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
The logging configuration that's defined for pipeline execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_log_group_name ⇒ String
The log group name that Image Builder uses for image creation.
-
#pipeline_log_group_name ⇒ String
The log group name that Image Builder uses for the log output during creation of a new pipeline.
Instance Attribute Details
#image_log_group_name ⇒ String
The log group name that Image Builder uses for image creation. If
not specified, the log group name defaults to
/aws/imagebuilder/image-name
.
7211 7212 7213 7214 7215 7216 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7211 class PipelineLoggingConfiguration < Struct.new( :image_log_group_name, :pipeline_log_group_name) SENSITIVE = [] include Aws::Structure end |
#pipeline_log_group_name ⇒ String
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
.
7211 7212 7213 7214 7215 7216 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 7211 class PipelineLoggingConfiguration < Struct.new( :image_log_group_name, :pipeline_log_group_name) SENSITIVE = [] include Aws::Structure end |