logo
pub struct CreateDeliveryStreamInput {
    pub delivery_stream_encryption_configuration_input: Option<DeliveryStreamEncryptionConfigurationInput>,
    pub delivery_stream_name: String,
    pub delivery_stream_type: Option<String>,
    pub elasticsearch_destination_configuration: Option<ElasticsearchDestinationConfiguration>,
    pub extended_s3_destination_configuration: Option<ExtendedS3DestinationConfiguration>,
    pub http_endpoint_destination_configuration: Option<HttpEndpointDestinationConfiguration>,
    pub kinesis_stream_source_configuration: Option<KinesisStreamSourceConfiguration>,
    pub redshift_destination_configuration: Option<RedshiftDestinationConfiguration>,
    pub splunk_destination_configuration: Option<SplunkDestinationConfiguration>,
    pub tags: Option<Vec<Tag>>,
}

Fields

delivery_stream_encryption_configuration_input: Option<DeliveryStreamEncryptionConfigurationInput>

Used to specify the type and Amazon Resource Name (ARN) of the KMS key needed for Server-Side Encryption (SSE).

delivery_stream_name: String

The name of the delivery stream. This name must be unique per AWS account in the same AWS Region. If the delivery streams are in different accounts or different Regions, you can have multiple delivery streams with the same name.

delivery_stream_type: Option<String>

The delivery stream type. This parameter can be one of the following values:

  • DirectPut: Provider applications access the delivery stream directly.

  • KinesisStreamAsSource: The delivery stream uses a Kinesis data stream as a source.

elasticsearch_destination_configuration: Option<ElasticsearchDestinationConfiguration>

The destination in Amazon ES. You can specify only one destination.

extended_s3_destination_configuration: Option<ExtendedS3DestinationConfiguration>

The destination in Amazon S3. You can specify only one destination.

http_endpoint_destination_configuration: Option<HttpEndpointDestinationConfiguration>

Enables configuring Kinesis Firehose to deliver data to any HTTP endpoint destination. You can specify only one destination.

kinesis_stream_source_configuration: Option<KinesisStreamSourceConfiguration>

When a Kinesis data stream is used as the source for the delivery stream, a KinesisStreamSourceConfiguration containing the Kinesis data stream Amazon Resource Name (ARN) and the role ARN for the source stream.

redshift_destination_configuration: Option<RedshiftDestinationConfiguration>

The destination in Amazon Redshift. You can specify only one destination.

splunk_destination_configuration: Option<SplunkDestinationConfiguration>

The destination in Splunk. You can specify only one destination.

tags: Option<Vec<Tag>>

A set of tags to assign to the delivery stream. A tag is a key-value pair that you can define and assign to AWS resources. Tags are metadata. For example, you can add friendly names and descriptions or other types of information that can help you distinguish the delivery stream. For more information about tags, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

You can specify up to 50 tags when creating a delivery stream.

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