logo
pub struct HttpEndpointDestinationUpdate {
    pub buffering_hints: Option<HttpEndpointBufferingHints>,
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub endpoint_configuration: Option<HttpEndpointConfiguration>,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub request_configuration: Option<HttpEndpointRequestConfiguration>,
    pub retry_options: Option<HttpEndpointRetryOptions>,
    pub role_arn: Option<String>,
    pub s3_backup_mode: Option<String>,
    pub s3_update: Option<S3DestinationUpdate>,
}
Expand description

Updates the specified HTTP endpoint destination.

Fields

buffering_hints: Option<HttpEndpointBufferingHints>

Describes buffering options that can be applied to the data before it is delivered to the HTTPS endpoint destination. Kinesis Data Firehose teats these options as hints, and it might choose to use more optimal values. The SizeInMBs and IntervalInSeconds parameters are optional. However, if specify a value for one of them, you must also provide a value for the other.

cloud_watch_logging_options: Option<CloudWatchLoggingOptions>endpoint_configuration: Option<HttpEndpointConfiguration>

Describes the configuration of the HTTP endpoint destination.

processing_configuration: Option<ProcessingConfiguration>request_configuration: Option<HttpEndpointRequestConfiguration>

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

retry_options: Option<HttpEndpointRetryOptions>

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.

role_arn: Option<String>

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

s3_backup_mode: Option<String>

Describes the S3 bucket backup options for the data that Kinesis 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).

s3_update: Option<S3DestinationUpdate>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more