interface LoggingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnInfrastructureConfigurationPropsMixin_LoggingProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnInfrastructureConfigurationPropsMixin » LoggingProperty |
Logging configuration defines where Image Builder uploads your logs.
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 loggingProperty: imagebuilder_mixins.CfnInfrastructureConfigurationPropsMixin.LoggingProperty = {
s3Logs: {
s3BucketName: 's3BucketName',
s3KeyPrefix: 's3KeyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The Amazon S3 logging configuration. |
s3Logs?
Type:
IResolvable | S3
(optional)
The Amazon S3 logging configuration.

.NET
Go
Java
Python
TypeScript