@Stability(value=Stable)
public static interface CfnDeliveryStream.RedshiftDestinationConfigurationProperty
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.*;
RedshiftDestinationConfigurationProperty redshiftDestinationConfigurationProperty = RedshiftDestinationConfigurationProperty.builder()
.clusterJdbcurl("clusterJdbcurl")
.copyCommand(CopyCommandProperty.builder()
.dataTableName("dataTableName")
// the properties below are optional
.copyOptions("copyOptions")
.dataTableColumns("dataTableColumns")
.build())
.password("password")
.roleArn("roleArn")
.s3Configuration(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())
.username("username")
// the properties below are optional
.cloudWatchLoggingOptions(CloudWatchLoggingOptionsProperty.builder()
.enabled(false)
.logGroupName("logGroupName")
.logStreamName("logStreamName")
.build())
.processingConfiguration(ProcessingConfigurationProperty.builder()
.enabled(false)
.processors(List.of(ProcessorProperty.builder()
.type("type")
// the properties below are optional
.parameters(List.of(ProcessorParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.build()))
.build())
.retryOptions(RedshiftRetryOptionsProperty.builder()
.durationInSeconds(123)
.build())
.s3BackupConfiguration(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())
.s3BackupMode("s3BackupMode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Builder
|
static class |
CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.RedshiftDestinationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Builder |
builder() |
default Object |
getCloudWatchLoggingOptions()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.CloudWatchLoggingOptions`.
|
String |
getClusterJdbcurl()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.ClusterJDBCURL`.
|
Object |
getCopyCommand()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.CopyCommand`.
|
String |
getPassword()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Password`.
|
default Object |
getProcessingConfiguration()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.ProcessingConfiguration`.
|
default Object |
getRetryOptions()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.RetryOptions`.
|
String |
getRoleArn()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.RoleARN`.
|
default Object |
getS3BackupConfiguration()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.S3BackupConfiguration`.
|
default String |
getS3BackupMode()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.S3BackupMode`.
|
Object |
getS3Configuration()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.S3Configuration`.
|
String |
getUsername()
`CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Username`.
|
@Stability(value=Stable) @Nullable default Object getCloudWatchLoggingOptions()
@Stability(value=Stable) @NotNull String getClusterJdbcurl()
@Stability(value=Stable) @NotNull Object getCopyCommand()
@Stability(value=Stable) @NotNull String getPassword()
@Stability(value=Stable) @Nullable default Object getProcessingConfiguration()
@Stability(value=Stable) @Nullable default Object getRetryOptions()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getS3BackupConfiguration()
@Stability(value=Stable) @Nullable default String getS3BackupMode()
@Stability(value=Stable) @NotNull Object getS3Configuration()
@Stability(value=Stable) @NotNull String getUsername()
@Stability(value=Stable) static CfnDeliveryStream.RedshiftDestinationConfigurationProperty.Builder builder()
Copyright © 2021. All rights reserved.