#[non_exhaustive]pub struct PutCodeBindingOutputBuilder { /* private fields */ }
Expand description
A builder for PutCodeBindingOutput
.
Implementations§
source§impl PutCodeBindingOutputBuilder
impl PutCodeBindingOutputBuilder
sourcepub fn creation_date(self, input: DateTime) -> Self
pub fn creation_date(self, input: DateTime) -> Self
The time and date that the code binding was created.
sourcepub fn set_creation_date(self, input: Option<DateTime>) -> Self
pub fn set_creation_date(self, input: Option<DateTime>) -> Self
The time and date that the code binding was created.
sourcepub fn get_creation_date(&self) -> &Option<DateTime>
pub fn get_creation_date(&self) -> &Option<DateTime>
The time and date that the code binding was created.
sourcepub fn last_modified(self, input: DateTime) -> Self
pub fn last_modified(self, input: DateTime) -> Self
The date and time that code bindings were modified.
sourcepub fn set_last_modified(self, input: Option<DateTime>) -> Self
pub fn set_last_modified(self, input: Option<DateTime>) -> Self
The date and time that code bindings were modified.
sourcepub fn get_last_modified(&self) -> &Option<DateTime>
pub fn get_last_modified(&self) -> &Option<DateTime>
The date and time that code bindings were modified.
sourcepub fn schema_version(self, input: impl Into<String>) -> Self
pub fn schema_version(self, input: impl Into<String>) -> Self
The version number of the schema.
sourcepub fn set_schema_version(self, input: Option<String>) -> Self
pub fn set_schema_version(self, input: Option<String>) -> Self
The version number of the schema.
sourcepub fn get_schema_version(&self) -> &Option<String>
pub fn get_schema_version(&self) -> &Option<String>
The version number of the schema.
sourcepub fn status(self, input: CodeGenerationStatus) -> Self
pub fn status(self, input: CodeGenerationStatus) -> Self
The current status of code binding generation.
sourcepub fn set_status(self, input: Option<CodeGenerationStatus>) -> Self
pub fn set_status(self, input: Option<CodeGenerationStatus>) -> Self
The current status of code binding generation.
sourcepub fn get_status(&self) -> &Option<CodeGenerationStatus>
pub fn get_status(&self) -> &Option<CodeGenerationStatus>
The current status of code binding generation.
sourcepub fn build(self) -> PutCodeBindingOutput
pub fn build(self) -> PutCodeBindingOutput
Consumes the builder and constructs a PutCodeBindingOutput
.
Trait Implementations§
source§impl Clone for PutCodeBindingOutputBuilder
impl Clone for PutCodeBindingOutputBuilder
source§fn clone(&self) -> PutCodeBindingOutputBuilder
fn clone(&self) -> PutCodeBindingOutputBuilder
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 PutCodeBindingOutputBuilder
impl Debug for PutCodeBindingOutputBuilder
source§impl Default for PutCodeBindingOutputBuilder
impl Default for PutCodeBindingOutputBuilder
source§fn default() -> PutCodeBindingOutputBuilder
fn default() -> PutCodeBindingOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutCodeBindingOutputBuilder
impl PartialEq for PutCodeBindingOutputBuilder
source§fn eq(&self, other: &PutCodeBindingOutputBuilder) -> bool
fn eq(&self, other: &PutCodeBindingOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutCodeBindingOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PutCodeBindingOutputBuilder
impl Send for PutCodeBindingOutputBuilder
impl Sync for PutCodeBindingOutputBuilder
impl Unpin for PutCodeBindingOutputBuilder
impl UnwindSafe for PutCodeBindingOutputBuilder
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> 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>
Creates a shared type from an unshared type.