interface PipelineLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnImagePipelinePropsMixin_PipelineLoggingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnImagePipelinePropsMixin » PipelineLoggingConfigurationProperty |
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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const pipelineLoggingConfigurationProperty: imagebuilder_mixins.CfnImagePipelinePropsMixin.PipelineLoggingConfigurationProperty = {
imageLogGroupName: 'imageLogGroupName',
pipelineLogGroupName: 'pipelineLogGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | The log group name that Image Builder uses for image creation. |
| pipeline | string | The log group name that Image Builder uses for the log output during creation of a new pipeline. |
imageLogGroupName?
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 .
pipelineLogGroupName?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript