interface PipelineLoggingConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.ImageBuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnImagePipeline_PipelineLoggingConfigurationProperty |
![]() | software.amazon.awscdk.services.imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
![]() | aws_cdk.aws_imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty |
![]() | 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
.