@Stability(value=Stable)
public static interface CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty
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.*;
HttpEndpointDestinationConfigurationProperty httpEndpointDestinationConfigurationProperty = HttpEndpointDestinationConfigurationProperty.builder()
.endpointConfiguration(HttpEndpointConfigurationProperty.builder()
.url("url")
// the properties below are optional
.accessKey("accessKey")
.name("name")
.build())
.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())
// the properties below are optional
.bufferingHints(BufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build())
.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())
.requestConfiguration(HttpEndpointRequestConfigurationProperty.builder()
.commonAttributes(List.of(HttpEndpointCommonAttributeProperty.builder()
.attributeName("attributeName")
.attributeValue("attributeValue")
.build()))
.contentEncoding("contentEncoding")
.build())
.retryOptions(RetryOptionsProperty.builder()
.durationInSeconds(123)
.build())
.roleArn("roleArn")
.s3BackupMode("s3BackupMode")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.Builder
|
static class |
CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.Jsii$Proxy
An implementation for
CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.Builder |
builder() |
default Object |
getBufferingHints()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.BufferingHints`.
|
default Object |
getCloudWatchLoggingOptions()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.CloudWatchLoggingOptions`.
|
Object |
getEndpointConfiguration()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.EndpointConfiguration`.
|
default Object |
getProcessingConfiguration()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.ProcessingConfiguration`.
|
default Object |
getRequestConfiguration()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.RequestConfiguration`.
|
default Object |
getRetryOptions()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.RetryOptions`.
|
default String |
getRoleArn()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.RoleARN`.
|
default String |
getS3BackupMode()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.S3BackupMode`.
|
Object |
getS3Configuration()
`CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.S3Configuration`.
|
@Stability(value=Stable) @Nullable default Object getBufferingHints()
@Stability(value=Stable) @Nullable default Object getCloudWatchLoggingOptions()
@Stability(value=Stable) @NotNull Object getEndpointConfiguration()
@Stability(value=Stable) @Nullable default Object getProcessingConfiguration()
@Stability(value=Stable) @Nullable default Object getRequestConfiguration()
@Stability(value=Stable) @Nullable default Object getRetryOptions()
@Stability(value=Stable) @Nullable default String getRoleArn()
@Stability(value=Stable) @Nullable default String getS3BackupMode()
@Stability(value=Stable) @NotNull Object getS3Configuration()
@Stability(value=Stable) static CfnDeliveryStream.HttpEndpointDestinationConfigurationProperty.Builder builder()
Copyright © 2021. All rights reserved.