interface S3LogsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnInfrastructureConfigurationPropsMixin.S3LogsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnInfrastructureConfigurationPropsMixin_S3LogsProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnInfrastructureConfigurationPropsMixin.S3LogsProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnInfrastructureConfigurationPropsMixin.S3LogsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnInfrastructureConfigurationPropsMixin » S3LogsProperty |
Amazon S3 logging configuration.
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 s3LogsProperty: imagebuilder_mixins.CfnInfrastructureConfigurationPropsMixin.S3LogsProperty = {
s3BucketName: 's3BucketName',
s3KeyPrefix: 's3KeyPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The S3 bucket in which to store the logs. |
| s3 | string | The Amazon S3 path to the bucket where the logs are stored. |
s3BucketName?
Type:
string
(optional)
The S3 bucket in which to store the logs.
s3KeyPrefix?
Type:
string
(optional)
The Amazon S3 path to the bucket where the logs are stored.

.NET
Go
Java
Python
TypeScript