Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HttpEndpointDestinationConfiguration

import type { HttpEndpointDestinationConfiguration } from "https://aws-api.deno.dev/v0.4/services/firehose.ts?docs=full";

Describes the configuration of the HTTP endpoint destination.

interface HttpEndpointDestinationConfiguration {
BufferingHints?: HttpEndpointBufferingHints | null;
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | null;
EndpointConfiguration: HttpEndpointConfiguration;
ProcessingConfiguration?: ProcessingConfiguration | null;
RequestConfiguration?: HttpEndpointRequestConfiguration | null;
RetryOptions?: HttpEndpointRetryOptions | null;
RoleARN?: string | null;
S3BackupMode?: HttpEndpointS3BackupMode | null;
S3Configuration: S3DestinationConfiguration;
}

§Properties

§
BufferingHints?: HttpEndpointBufferingHints | null
[src]

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.

§
CloudWatchLoggingOptions?: CloudWatchLoggingOptions | null
[src]
§
EndpointConfiguration: HttpEndpointConfiguration
[src]

The configuration of the HTTP endpoint selected as the destination.

§
ProcessingConfiguration?: ProcessingConfiguration | null
[src]
§
RequestConfiguration?: HttpEndpointRequestConfiguration | null
[src]

The configuration of the requeste sent to the HTTP endpoint specified as the destination.

§
RetryOptions?: HttpEndpointRetryOptions | null
[src]

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.

§
RoleARN?: string | null
[src]

Kinesis Data Firehose uses this IAM role for all the permissions that the delivery stream needs.

§
S3BackupMode?: HttpEndpointS3BackupMode | null
[src]

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).