interface LoggingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnInfrastructureConfigurationPropsMixin_LoggingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnInfrastructureConfigurationPropsMixin.LoggingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » 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 { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const loggingProperty: imagebuilder.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