class HttpEndpoint
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.HttpEndpoint |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#HttpEndpoint |
Java | software.amazon.awscdk.services.kinesisfirehose.HttpEndpoint |
Python | aws_cdk.aws_kinesisfirehose.HttpEndpoint |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » HttpEndpoint |
Implements
IDestination
An Http destination for data from a Kinesis Data Firehose delivery stream.
Example
declare const endpointConfig: firehose.HttpEndpointConfig;
const httpDestination = new firehose.HttpEndpoint({
endpointConfig,
});
Initializer
new HttpEndpoint(props: HttpEndpointProps)
Parameters
- props
HttpEndpoint Props
Methods
| Name | Description |
|---|---|
| bind(scope, _options) | Binds this destination to the Amazon Data Firehose delivery stream. |
bind(scope, _options)
public bind(scope: Construct, _options: DestinationBindOptions): DestinationConfig
Parameters
- scope
Construct - _options
DestinationBind Options
Returns
Binds this destination to the Amazon Data Firehose delivery stream.
Implementers should use this method to bind resources to the stack and initialize values using the provided stream.

.NET
Go
Java
Python
TypeScript (