[][src]Struct rusoto_ssm::ResourceDataSyncS3Destination

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

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

Fields

awskms_key_arn: Option<String>

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

bucket_name: String

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

destination_data_sharing: Option<ResourceDataSyncDestinationDataSharing>

Enables destination data sharing. By default, this field is null.

prefix: Option<String>

An Amazon S3 prefix for the bucket.

region: String

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

sync_format: String

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

Trait Implementations

impl Clone for ResourceDataSyncS3Destination[src]

impl Debug for ResourceDataSyncS3Destination[src]

impl Default for ResourceDataSyncS3Destination[src]

impl<'de> Deserialize<'de> for ResourceDataSyncS3Destination[src]

impl PartialEq<ResourceDataSyncS3Destination> for ResourceDataSyncS3Destination[src]

impl Serialize for ResourceDataSyncS3Destination[src]

impl StructuralPartialEq for ResourceDataSyncS3Destination[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.