@Stability(value=Stable)
public static interface CfnDeliveryStream.S3DestinationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.kinesisfirehose.*;
S3DestinationConfigurationProperty s3DestinationConfigurationProperty = S3DestinationConfigurationProperty.builder()
.bucketArn("bucketArn")
.roleArn("roleArn")
// the properties below are optional
.bufferingHints(BufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build())
.cloudWatchLoggingOptions(CloudWatchLoggingOptionsProperty.builder()
.enabled(false)
.logGroupName("logGroupName")
.logStreamName("logStreamName")
.build())
.compressionFormat("compressionFormat")
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.kmsEncryptionConfig(KMSEncryptionConfigProperty.builder()
.awskmsKeyArn("awskmsKeyArn")
.build())
.noEncryptionConfig("noEncryptionConfig")
.build())
.errorOutputPrefix("errorOutputPrefix")
.prefix("prefix")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.S3DestinationConfigurationProperty.Builder
A builder for
CfnDeliveryStream.S3DestinationConfigurationProperty |
static class |
CfnDeliveryStream.S3DestinationConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.S3DestinationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.S3DestinationConfigurationProperty.Builder |
builder() |
String |
getBucketArn()
The Amazon Resource Name (ARN) of the Amazon S3 bucket to send data to.
|
default Object |
getBufferingHints()
Configures how Kinesis Data Firehose buffers incoming data while delivering it to the Amazon S3 bucket.
|
default Object |
getCloudWatchLoggingOptions()
The CloudWatch logging options for your delivery stream.
|
default String |
getCompressionFormat()
The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket.
|
default Object |
getEncryptionConfiguration()
Configures Amazon Simple Storage Service (Amazon S3) server-side encryption.
|
default String |
getErrorOutputPrefix()
A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3.
|
default String |
getPrefix()
A prefix that Kinesis Data Firehose adds to the files that it delivers to the Amazon S3 bucket.
|
String |
getRoleArn()
The ARN of an AWS Identity and Access Management (IAM) role that grants Kinesis Data Firehose access to your Amazon S3 bucket and AWS KMS (if you enable data encryption).
|
@Stability(value=Stable) @NotNull String getBucketArn()
@Stability(value=Stable) @NotNull String getRoleArn()
For more information, see Grant Kinesis Data Firehose Access to an Amazon S3 Destination in the Amazon Kinesis Data Firehose Developer Guide .
@Stability(value=Stable) @Nullable default Object getBufferingHints()
@Stability(value=Stable) @Nullable default Object getCloudWatchLoggingOptions()
@Stability(value=Stable) @Nullable default String getCompressionFormat()
For valid values, see the CompressionFormat content for the S3DestinationConfiguration data type in the Amazon Kinesis Data Firehose API Reference .
@Stability(value=Stable) @Nullable default Object getEncryptionConfiguration()
Kinesis Data Firehose uses AWS Key Management Service ( AWS KMS) to encrypt the data that it delivers to your Amazon S3 bucket.
@Stability(value=Stable) @Nullable default String getErrorOutputPrefix()
This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects .
@Stability(value=Stable) @Nullable default String getPrefix()
The prefix helps you identify the files that Kinesis Data Firehose delivered.
@Stability(value=Stable) static CfnDeliveryStream.S3DestinationConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.