#[non_exhaustive]pub struct ParametricS3MonitoringConfiguration {
pub log_uri: Option<String>,
}Expand description
Amazon S3 configuration for monitoring log publishing. You can configure your jobs to send log information to Amazon S3. This data type allows job template parameters to be specified within.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.log_uri: Option<String>Amazon S3 destination URI for log publishing.
Implementations§
source§impl ParametricS3MonitoringConfiguration
impl ParametricS3MonitoringConfiguration
sourcepub fn builder() -> ParametricS3MonitoringConfigurationBuilder
pub fn builder() -> ParametricS3MonitoringConfigurationBuilder
Creates a new builder-style object to manufacture ParametricS3MonitoringConfiguration.
Trait Implementations§
source§impl Clone for ParametricS3MonitoringConfiguration
impl Clone for ParametricS3MonitoringConfiguration
source§fn clone(&self) -> ParametricS3MonitoringConfiguration
fn clone(&self) -> ParametricS3MonitoringConfiguration
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<ParametricS3MonitoringConfiguration> for ParametricS3MonitoringConfiguration
impl PartialEq<ParametricS3MonitoringConfiguration> for ParametricS3MonitoringConfiguration
source§fn eq(&self, other: &ParametricS3MonitoringConfiguration) -> bool
fn eq(&self, other: &ParametricS3MonitoringConfiguration) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ParametricS3MonitoringConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for ParametricS3MonitoringConfiguration
impl Send for ParametricS3MonitoringConfiguration
impl Sync for ParametricS3MonitoringConfiguration
impl Unpin for ParametricS3MonitoringConfiguration
impl UnwindSafe for ParametricS3MonitoringConfiguration
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more