Class: Aws::Imagebuilder::Types::ImageLoggingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::ImageLoggingConfiguration
- Defined in:
- gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb
Overview
The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#log_group_name ⇒ String
The log group name that Image Builder uses for image creation.
Instance Attribute Details
#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
.
3678 3679 3680 3681 3682 |
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 3678 class ImageLoggingConfiguration < Struct.new( :log_group_name) SENSITIVE = [] include Aws::Structure end |