[][src]Struct rusoto_firehose::ExtendedS3DestinationConfiguration

pub struct ExtendedS3DestinationConfiguration {
    pub bucket_arn: String,
    pub buffering_hints: Option<BufferingHints>,
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub compression_format: Option<String>,
    pub data_format_conversion_configuration: Option<DataFormatConversionConfiguration>,
    pub encryption_configuration: Option<EncryptionConfiguration>,
    pub prefix: Option<String>,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub role_arn: String,
    pub s3_backup_configuration: Option<S3DestinationConfiguration>,
    pub s3_backup_mode: Option<String>,
}

Describes the configuration of a destination in Amazon S3.

Fields

The ARN of the S3 bucket. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.

The buffering option.

The Amazon CloudWatch logging options for your delivery stream.

The compression format. If no value is specified, the default is UNCOMPRESSED.

The serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3.

The encryption configuration. If no value is specified, the default is no encryption.

The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered Amazon S3 files. You can specify an extra prefix to be added in front of the time format prefix. If the prefix ends with a slash, it appears as a folder in the S3 bucket. For more information, see Amazon S3 Object Name Format in the Amazon Kinesis Data Firehose Developer Guide.

The data processing configuration.

The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.

The configuration for backup in Amazon S3.

The Amazon S3 backup mode.

Trait Implementations

impl Default for ExtendedS3DestinationConfiguration
[src]

impl PartialEq<ExtendedS3DestinationConfiguration> for ExtendedS3DestinationConfiguration
[src]

impl Clone for ExtendedS3DestinationConfiguration
[src]

Performs copy-assignment from source. Read more

impl Debug for ExtendedS3DestinationConfiguration
[src]

impl Serialize for ExtendedS3DestinationConfiguration
[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self