#[non_exhaustive]pub struct StartReportJobOutputBuilder { /* private fields */ }
Expand description
A builder for StartReportJobOutput
.
Implementations§
source§impl StartReportJobOutputBuilder
impl StartReportJobOutputBuilder
sourcepub fn report_job_id(self, input: impl Into<String>) -> Self
pub fn report_job_id(self, input: impl Into<String>) -> Self
The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.
sourcepub fn set_report_job_id(self, input: Option<String>) -> Self
pub fn set_report_job_id(self, input: Option<String>) -> Self
The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.
sourcepub fn get_report_job_id(&self) -> &Option<String>
pub fn get_report_job_id(&self) -> &Option<String>
The identifier of the report job. A unique, randomly generated, Unicode, UTF-8 encoded string that is at most 1,024 bytes long. The report job ID cannot be edited.
sourcepub fn build(self) -> StartReportJobOutput
pub fn build(self) -> StartReportJobOutput
Consumes the builder and constructs a StartReportJobOutput
.
Trait Implementations§
source§impl Clone for StartReportJobOutputBuilder
impl Clone for StartReportJobOutputBuilder
source§fn clone(&self) -> StartReportJobOutputBuilder
fn clone(&self) -> StartReportJobOutputBuilder
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 Debug for StartReportJobOutputBuilder
impl Debug for StartReportJobOutputBuilder
source§impl Default for StartReportJobOutputBuilder
impl Default for StartReportJobOutputBuilder
source§fn default() -> StartReportJobOutputBuilder
fn default() -> StartReportJobOutputBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for StartReportJobOutputBuilder
Auto Trait Implementations§
impl Freeze for StartReportJobOutputBuilder
impl RefUnwindSafe for StartReportJobOutputBuilder
impl Send for StartReportJobOutputBuilder
impl Sync for StartReportJobOutputBuilder
impl Unpin for StartReportJobOutputBuilder
impl UnwindSafe for StartReportJobOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.