interface S3LogDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.S3LogDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_S3LogDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.S3LogDestinationProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.S3LogDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » S3LogDestinationProperty |
Represents the Amazon S3 logging configuration settings for the pipe.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const s3LogDestinationProperty: pipes_mixins.CfnPipePropsMixin.S3LogDestinationProperty = {
bucketName: 'bucketName',
bucketOwner: 'bucketOwner',
outputFormat: 'outputFormat',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe. |
| bucket | string | The AWS account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe. |
| output | string | The format EventBridge uses for the log records. |
| prefix? | string | The prefix text with which to begin Amazon S3 log object names. |
bucketName?
Type:
string
(optional)
The name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
bucketOwner?
Type:
string
(optional)
The AWS account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
outputFormat?
Type:
string
(optional)
The format EventBridge uses for the log records.
EventBridge currently only supports json formatting.
prefix?
Type:
string
(optional)
The prefix text with which to begin Amazon S3 log object names.
For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide .

.NET
Go
Java
Python
TypeScript