Struct aws_sdk_ssm::model::ResourceDataSyncS3Destination
source · #[non_exhaustive]pub struct ResourceDataSyncS3Destination { /* private fields */ }Expand description
Information about the target S3 bucket for the resource data sync.
Implementations§
source§impl ResourceDataSyncS3Destination
impl ResourceDataSyncS3Destination
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
The name of the S3 bucket where the aggregated data is stored.
sourcepub fn sync_format(&self) -> Option<&ResourceDataSyncS3Format>
pub fn sync_format(&self) -> Option<&ResourceDataSyncS3Format>
A supported sync format. The following format is currently supported: JsonSerDe
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services Region with the S3 bucket targeted by the resource data sync.
sourcepub fn awskms_key_arn(&self) -> Option<&str>
pub fn awskms_key_arn(&self) -> Option<&str>
The ARN of an encryption key for a destination in Amazon S3. Must belong to the same Region as the destination S3 bucket.
sourcepub fn destination_data_sharing(
&self
) -> Option<&ResourceDataSyncDestinationDataSharing>
pub fn destination_data_sharing(
&self
) -> Option<&ResourceDataSyncDestinationDataSharing>
Enables destination data sharing. By default, this field is null.
source§impl ResourceDataSyncS3Destination
impl ResourceDataSyncS3Destination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResourceDataSyncS3Destination.
Trait Implementations§
source§impl Clone for ResourceDataSyncS3Destination
impl Clone for ResourceDataSyncS3Destination
source§fn clone(&self) -> ResourceDataSyncS3Destination
fn clone(&self) -> ResourceDataSyncS3Destination
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq<ResourceDataSyncS3Destination> for ResourceDataSyncS3Destination
impl PartialEq<ResourceDataSyncS3Destination> for ResourceDataSyncS3Destination
source§fn eq(&self, other: &ResourceDataSyncS3Destination) -> bool
fn eq(&self, other: &ResourceDataSyncS3Destination) -> bool
This method tests for
self and other values to be equal, and is used
by ==.