Interface CfnDeliveryStreamPropsMixin.HttpEndpointDestinationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStreamPropsMixin.HttpEndpointDestinationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStreamPropsMixin
Kinesis Firehose supports any custom HTTP endpoint or HTTP endpoints owned by supported third-party service providers, including Datadog, MongoDB, and New Relic.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.*;
HttpEndpointDestinationConfigurationProperty httpEndpointDestinationConfigurationProperty = HttpEndpointDestinationConfigurationProperty.builder()
.bufferingHints(BufferingHintsProperty.builder()
.intervalInSeconds(123)
.sizeInMBs(123)
.build())
.cloudWatchLoggingOptions(CloudWatchLoggingOptionsProperty.builder()
.enabled(false)
.logGroupName("logGroupName")
.logStreamName("logStreamName")
.build())
.endpointConfiguration(HttpEndpointConfigurationProperty.builder()
.accessKey("accessKey")
.name("name")
.url("url")
.build())
.processingConfiguration(ProcessingConfigurationProperty.builder()
.enabled(false)
.processors(List.of(ProcessorProperty.builder()
.parameters(List.of(ProcessorParameterProperty.builder()
.parameterName("parameterName")
.parameterValue("parameterValue")
.build()))
.type("type")
.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")
.s3Configuration(S3DestinationConfigurationProperty.builder()
.bucketArn("bucketArn")
.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")
.roleArn("roleArn")
.build())
.secretsManagerConfiguration(SecretsManagerConfigurationProperty.builder()
.enabled(false)
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDeliveryStreamPropsMixin.HttpEndpointDestinationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe buffering options that can be used before data is delivered to the specified destination.default ObjectDescribes the Amazon CloudWatch logging options for your delivery stream.default ObjectThe configuration of the HTTP endpoint selected as the destination.default ObjectDescribes the data processing configuration.default ObjectThe configuration of the request sent to the HTTP endpoint specified as the destination.default ObjectDescribes the retry behavior in case Kinesis Data Firehose is unable to deliver data to the specified HTTP endpoint destination, or if it doesn't receive a valid acknowledgment of receipt from the specified HTTP endpoint destination.default StringKinesis Data Firehose uses this IAM role for all the permissions that the delivery stream needs.default StringDescribes the S3 bucket backup options for the data that Kinesis Data Firehose delivers to the HTTP endpoint destination.default ObjectDescribes the configuration of a destination in Amazon S3.default ObjectThe configuration that defines how you access secrets for HTTP Endpoint destination.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBufferingHints
The buffering options that can be used before data is delivered to the specified destination.Kinesis Data Firehose treats these options as hints, and it might choose to use more optimal values. The SizeInMBs and IntervalInSeconds parameters are optional. However, if you specify a value for one of them, you must also provide a value for the other.
Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.BufferingHintsProperty- See Also:
-
getCloudWatchLoggingOptions
Describes the Amazon CloudWatch logging options for your delivery stream.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.CloudWatchLoggingOptionsProperty- See Also:
-
getEndpointConfiguration
The configuration of the HTTP endpoint selected as the destination.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.HttpEndpointConfigurationProperty- See Also:
-
getProcessingConfiguration
Describes the data processing configuration.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.ProcessingConfigurationProperty- See Also:
-
getRequestConfiguration
The configuration of the request sent to the HTTP endpoint specified as the destination.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.HttpEndpointRequestConfigurationProperty- See Also:
-
getRetryOptions
Describes the retry behavior in case Kinesis Data Firehose is unable to deliver data to the specified HTTP endpoint destination, or if it doesn't receive a valid acknowledgment of receipt from the specified HTTP endpoint destination.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.RetryOptionsProperty- See Also:
-
getRoleArn
Kinesis Data Firehose uses this IAM role for all the permissions that the delivery stream needs.- See Also:
-
getS3BackupMode
Describes the S3 bucket backup options for the data that Kinesis Data Firehose delivers to the HTTP endpoint destination.You can back up all documents (AllData) or only the documents that Kinesis Data Firehose could not deliver to the specified HTTP endpoint destination (FailedDataOnly).
- See Also:
-
getS3Configuration
Describes the configuration of a destination in Amazon S3.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.S3DestinationConfigurationProperty- See Also:
-
getSecretsManagerConfiguration
The configuration that defines how you access secrets for HTTP Endpoint destination.Returns union: either
IResolvableorCfnDeliveryStreamPropsMixin.SecretsManagerConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDeliveryStreamPropsMixin.HttpEndpointDestinationConfigurationProperty.Builder builder()
-