[][src]Struct rusoto_firehose::CreateDeliveryStreamInput

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

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

impl Clone for CreateDeliveryStreamInput[src]

impl Debug for CreateDeliveryStreamInput[src]

impl Default for CreateDeliveryStreamInput[src]

impl PartialEq<CreateDeliveryStreamInput> for CreateDeliveryStreamInput[src]

impl Serialize for CreateDeliveryStreamInput[src]

impl StructuralPartialEq for CreateDeliveryStreamInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.