Struct rusoto_firehose::S3DestinationUpdate[][src]

pub struct S3DestinationUpdate {
    pub bucket_arn: Option<String>,
    pub buffering_hints: Option<BufferingHints>,
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub compression_format: Option<String>,
    pub encryption_configuration: Option<EncryptionConfiguration>,
    pub prefix: Option<String>,
    pub role_arn: Option<String>,
}

Describes an update for a destination in Amazon S3.

Fields

The ARN of the S3 bucket.

The buffering option. If no value is specified, BufferingHints object default values are used.

The CloudWatch logging options for your delivery stream.

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

The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

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 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 Firehose Developer Guide.

The ARN of the AWS credentials.

Trait Implementations

impl Default for S3DestinationUpdate
[src]

Returns the "default value" for a type. Read more

impl Debug for S3DestinationUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for S3DestinationUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for S3DestinationUpdate
[src]

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

This method tests for !=.

Auto Trait Implementations