Struct rusoto_ssm::ResourceDataSyncS3Destination[][src]

pub struct ResourceDataSyncS3Destination {
    pub awskms_key_arn: Option<String>,
    pub bucket_name: String,
    pub prefix: Option<String>,
    pub region: String,
    pub sync_format: String,
}

Information about the target Amazon S3 bucket for the Resource Data Sync.

Fields

The ARN of an encryption key for a destination in Amazon S3. Must belong to the same region as the destination Amazon S3 bucket.

The name of the Amazon S3 bucket where the aggregated data is stored.

An Amazon S3 prefix for the bucket.

The AWS Region with the Amazon S3 bucket targeted by the Resource Data Sync.

A supported sync format. The following format is currently supported: JsonSerDe

Trait Implementations

impl Default for ResourceDataSyncS3Destination
[src]

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

impl Debug for ResourceDataSyncS3Destination
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceDataSyncS3Destination
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceDataSyncS3Destination
[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