Struct aws_sdk_ssm::model::ResourceDataSyncS3Destination
source · [−]#[non_exhaustive]pub struct ResourceDataSyncS3Destination {
pub bucket_name: Option<String>,
pub prefix: Option<String>,
pub sync_format: Option<ResourceDataSyncS3Format>,
pub region: Option<String>,
pub awskms_key_arn: Option<String>,
pub destination_data_sharing: Option<ResourceDataSyncDestinationDataSharing>,
}
Expand description
Information about the target S3 bucket for the resource data sync.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bucket_name: Option<String>
The name of the S3 bucket where the aggregated data is stored.
prefix: Option<String>
An Amazon S3 prefix for the bucket.
sync_format: Option<ResourceDataSyncS3Format>
A supported sync format. The following format is currently supported: JsonSerDe
region: Option<String>
The Amazon Web Services Region with the S3 bucket targeted by the resource data sync.
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.
destination_data_sharing: Option<ResourceDataSyncDestinationDataSharing>
Enables destination data sharing. By default, this field is null
.
Implementations
sourceimpl 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
.
sourceimpl ResourceDataSyncS3Destination
impl ResourceDataSyncS3Destination
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResourceDataSyncS3Destination
Trait Implementations
sourceimpl Clone for ResourceDataSyncS3Destination
impl Clone for ResourceDataSyncS3Destination
sourcefn clone(&self) -> ResourceDataSyncS3Destination
fn clone(&self) -> ResourceDataSyncS3Destination
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ResourceDataSyncS3Destination
impl Debug for ResourceDataSyncS3Destination
sourceimpl PartialEq<ResourceDataSyncS3Destination> for ResourceDataSyncS3Destination
impl PartialEq<ResourceDataSyncS3Destination> for ResourceDataSyncS3Destination
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ResourceDataSyncS3Destination) -> bool
fn ne(&self, other: &ResourceDataSyncS3Destination) -> bool
This method tests for !=
.
impl StructuralPartialEq for ResourceDataSyncS3Destination
Auto Trait Implementations
impl RefUnwindSafe for ResourceDataSyncS3Destination
impl Send for ResourceDataSyncS3Destination
impl Sync for ResourceDataSyncS3Destination
impl Unpin for ResourceDataSyncS3Destination
impl UnwindSafe for ResourceDataSyncS3Destination
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more