interface ImageLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnImagePropsMixin_ImageLoggingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnImagePropsMixin.ImageLoggingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » 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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const imageLoggingConfigurationProperty: imagebuilder_mixins.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