Struct aws_sdk_s3control::model::S3ManifestOutputLocation
source · [−]#[non_exhaustive]pub struct S3ManifestOutputLocation {
pub expected_manifest_bucket_owner: Option<String>,
pub bucket: Option<String>,
pub manifest_prefix: Option<String>,
pub manifest_encryption: Option<GeneratedManifestEncryption>,
pub manifest_format: Option<GeneratedManifestFormat>,
}
Expand description
Location details for where the generated manifest should be written.
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.expected_manifest_bucket_owner: Option<String>
The Account ID that owns the bucket the generated manifest is written to.
bucket: Option<String>
The bucket ARN the generated manifest should be written to.
manifest_prefix: Option<String>
Prefix identifying one or more objects to which the manifest applies.
manifest_encryption: Option<GeneratedManifestEncryption>
Specifies what encryption should be used when the generated manifest objects are written.
manifest_format: Option<GeneratedManifestFormat>
The format of the generated manifest.
Implementations
sourceimpl S3ManifestOutputLocation
impl S3ManifestOutputLocation
sourcepub fn expected_manifest_bucket_owner(&self) -> Option<&str>
pub fn expected_manifest_bucket_owner(&self) -> Option<&str>
The Account ID that owns the bucket the generated manifest is written to.
sourcepub fn bucket(&self) -> Option<&str>
pub fn bucket(&self) -> Option<&str>
The bucket ARN the generated manifest should be written to.
sourcepub fn manifest_prefix(&self) -> Option<&str>
pub fn manifest_prefix(&self) -> Option<&str>
Prefix identifying one or more objects to which the manifest applies.
sourcepub fn manifest_encryption(&self) -> Option<&GeneratedManifestEncryption>
pub fn manifest_encryption(&self) -> Option<&GeneratedManifestEncryption>
Specifies what encryption should be used when the generated manifest objects are written.
sourcepub fn manifest_format(&self) -> Option<&GeneratedManifestFormat>
pub fn manifest_format(&self) -> Option<&GeneratedManifestFormat>
The format of the generated manifest.
sourceimpl S3ManifestOutputLocation
impl S3ManifestOutputLocation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture S3ManifestOutputLocation
Trait Implementations
sourceimpl Clone for S3ManifestOutputLocation
impl Clone for S3ManifestOutputLocation
sourcefn clone(&self) -> S3ManifestOutputLocation
fn clone(&self) -> S3ManifestOutputLocation
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 S3ManifestOutputLocation
impl Debug for S3ManifestOutputLocation
sourceimpl PartialEq<S3ManifestOutputLocation> for S3ManifestOutputLocation
impl PartialEq<S3ManifestOutputLocation> for S3ManifestOutputLocation
sourcefn eq(&self, other: &S3ManifestOutputLocation) -> bool
fn eq(&self, other: &S3ManifestOutputLocation) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &S3ManifestOutputLocation) -> bool
fn ne(&self, other: &S3ManifestOutputLocation) -> bool
This method tests for !=
.
impl StructuralPartialEq for S3ManifestOutputLocation
Auto Trait Implementations
impl RefUnwindSafe for S3ManifestOutputLocation
impl Send for S3ManifestOutputLocation
impl Sync for S3ManifestOutputLocation
impl Unpin for S3ManifestOutputLocation
impl UnwindSafe for S3ManifestOutputLocation
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> 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.
sourcefn clone_into(&self, target: &mut T)
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