interface ImageLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnImagePropsMixin_ImageLoggingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » CfnImagePropsMixin » ImageLoggingConfigurationProperty |
The logging configuration that's defined for the image.
Image Builder uses the defined settings to direct execution log output during image creation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const imageLoggingConfigurationProperty: imagebuilder.CfnImagePropsMixin.ImageLoggingConfigurationProperty = {
logGroupName: 'logGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The log group name that Image Builder uses for image creation. |
logGroupName?
Type:
string
(optional)
The log group name that Image Builder uses for image creation.
If not specified, the log group name defaults to /aws/imagebuilder/image-name .

.NET
Go
Java
Python
TypeScript