Struct aws_sdk_m2::types::S3BatchJobIdentifier
source · #[non_exhaustive]pub struct S3BatchJobIdentifier {
pub bucket: String,
pub key_prefix: Option<String>,
pub identifier: Option<JobIdentifier>,
}
Expand description
A batch job identifier in which the batch jobs to run are identified by an Amazon S3 location.
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: String
The Amazon S3 bucket that contains the batch job definitions.
key_prefix: Option<String>
The key prefix that specifies the path to the folder in the S3 bucket that has the batch job definitions.
identifier: Option<JobIdentifier>
Identifies the batch job definition. This identifier can also point to any batch job definition that already exists in the application or to one of the batch job definitions within the directory that is specified in keyPrefix
.
Implementations§
source§impl S3BatchJobIdentifier
impl S3BatchJobIdentifier
sourcepub fn key_prefix(&self) -> Option<&str>
pub fn key_prefix(&self) -> Option<&str>
The key prefix that specifies the path to the folder in the S3 bucket that has the batch job definitions.
sourcepub fn identifier(&self) -> Option<&JobIdentifier>
pub fn identifier(&self) -> Option<&JobIdentifier>
Identifies the batch job definition. This identifier can also point to any batch job definition that already exists in the application or to one of the batch job definitions within the directory that is specified in keyPrefix
.
source§impl S3BatchJobIdentifier
impl S3BatchJobIdentifier
sourcepub fn builder() -> S3BatchJobIdentifierBuilder
pub fn builder() -> S3BatchJobIdentifierBuilder
Creates a new builder-style object to manufacture S3BatchJobIdentifier
.
Trait Implementations§
source§impl Clone for S3BatchJobIdentifier
impl Clone for S3BatchJobIdentifier
source§fn clone(&self) -> S3BatchJobIdentifier
fn clone(&self) -> S3BatchJobIdentifier
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for S3BatchJobIdentifier
impl Debug for S3BatchJobIdentifier
source§impl PartialEq for S3BatchJobIdentifier
impl PartialEq for S3BatchJobIdentifier
source§fn eq(&self, other: &S3BatchJobIdentifier) -> bool
fn eq(&self, other: &S3BatchJobIdentifier) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for S3BatchJobIdentifier
Auto Trait Implementations§
impl Freeze for S3BatchJobIdentifier
impl RefUnwindSafe for S3BatchJobIdentifier
impl Send for S3BatchJobIdentifier
impl Sync for S3BatchJobIdentifier
impl Unpin for S3BatchJobIdentifier
impl UnwindSafe for S3BatchJobIdentifier
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more