interface PipelineLoggingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnImagePipeline_PipelineLoggingConfigurationProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
Python | aws_cdk.aws_imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnImagePipeline » 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 { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const pipelineLoggingConfigurationProperty: imagebuilder.CfnImagePipeline.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