#[non_exhaustive]pub struct AutoExportRevisionDestinationEntry {
pub bucket: Option<String>,
pub key_pattern: Option<String>,
}Expand description
A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.
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: Option<String>The S3 bucket that is the destination for the event action.
key_pattern: Option<String>A string representing the pattern for generated names of the individual assets in the revision. For more information about key patterns, see Key patterns when exporting revisions.
Implementations
sourceimpl AutoExportRevisionDestinationEntry
impl AutoExportRevisionDestinationEntry
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The S3 bucket that is the destination for the event action.
sourcepub fn key_pattern(&self) -> Option<&str>
pub fn key_pattern(&self) -> Option<&str>
A string representing the pattern for generated names of the individual assets in the revision. For more information about key patterns, see Key patterns when exporting revisions.
sourceimpl AutoExportRevisionDestinationEntry
impl AutoExportRevisionDestinationEntry
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AutoExportRevisionDestinationEntry
Trait Implementations
sourceimpl Clone for AutoExportRevisionDestinationEntry
impl Clone for AutoExportRevisionDestinationEntry
sourcefn clone(&self) -> AutoExportRevisionDestinationEntry
fn clone(&self) -> AutoExportRevisionDestinationEntry
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 PartialEq<AutoExportRevisionDestinationEntry> for AutoExportRevisionDestinationEntry
impl PartialEq<AutoExportRevisionDestinationEntry> for AutoExportRevisionDestinationEntry
sourcefn eq(&self, other: &AutoExportRevisionDestinationEntry) -> bool
fn eq(&self, other: &AutoExportRevisionDestinationEntry) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AutoExportRevisionDestinationEntry) -> bool
fn ne(&self, other: &AutoExportRevisionDestinationEntry) -> bool
This method tests for !=.
impl StructuralPartialEq for AutoExportRevisionDestinationEntry
Auto Trait Implementations
impl RefUnwindSafe for AutoExportRevisionDestinationEntry
impl Send for AutoExportRevisionDestinationEntry
impl Sync for AutoExportRevisionDestinationEntry
impl Unpin for AutoExportRevisionDestinationEntry
impl UnwindSafe for AutoExportRevisionDestinationEntry
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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