@Stability(value=Stable)
public static interface CfnDeliveryStream.S3DestinationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// 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()
`CfnDeliveryStream.S3DestinationConfigurationProperty.BucketARN`.
|
default Object |
getBufferingHints()
`CfnDeliveryStream.S3DestinationConfigurationProperty.BufferingHints`.
|
default Object |
getCloudWatchLoggingOptions()
`CfnDeliveryStream.S3DestinationConfigurationProperty.CloudWatchLoggingOptions`.
|
default String |
getCompressionFormat()
`CfnDeliveryStream.S3DestinationConfigurationProperty.CompressionFormat`.
|
default Object |
getEncryptionConfiguration()
`CfnDeliveryStream.S3DestinationConfigurationProperty.EncryptionConfiguration`.
|
default String |
getErrorOutputPrefix()
`CfnDeliveryStream.S3DestinationConfigurationProperty.ErrorOutputPrefix`.
|
default String |
getPrefix()
`CfnDeliveryStream.S3DestinationConfigurationProperty.Prefix`.
|
String |
getRoleArn()
`CfnDeliveryStream.S3DestinationConfigurationProperty.RoleARN`.
|
@Stability(value=Stable) @NotNull String getBucketArn()
@Stability(value=Stable) @Nullable default Object getBufferingHints()
@Stability(value=Stable) @Nullable default Object getCloudWatchLoggingOptions()
@Stability(value=Stable) @Nullable default String getCompressionFormat()
@Stability(value=Stable) @Nullable default Object getEncryptionConfiguration()
@Stability(value=Stable) @Nullable default String getErrorOutputPrefix()
@Stability(value=Stable) @Nullable default String getPrefix()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) static CfnDeliveryStream.S3DestinationConfigurationProperty.Builder builder()
Copyright © 2021. All rights reserved.