Interface CfnPipe.S3LogDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipe.S3LogDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnPipe
@Stability(Stable)
public static interface CfnPipe.S3LogDestinationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pipes.*; S3LogDestinationProperty s3LogDestinationProperty = S3LogDestinationProperty.builder() .bucketName("bucketName") .bucketOwner("bucketOwner") .outputFormat("outputFormat") .prefix("prefix") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipe.S3LogDestinationProperty
static final class
An implementation forCfnPipe.S3LogDestinationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.default String
The AWS account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.default String
The format EventBridge uses for the log records.default String
The prefix text with which to begin Amazon S3 log object names.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.- See Also:
-
getBucketOwner
The AWS account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.- See Also:
-
getOutputFormat
The format EventBridge uses for the log records.EventBridge currently only supports
json
formatting.- See Also:
-
getPrefix
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 .
- See Also:
-
builder
-