Struct aws_sdk_appsync::operation::get_schema_creation_status::builders::GetSchemaCreationStatusOutputBuilder
source · #[non_exhaustive]pub struct GetSchemaCreationStatusOutputBuilder { /* private fields */ }
Expand description
A builder for GetSchemaCreationStatusOutput
.
Implementations§
source§impl GetSchemaCreationStatusOutputBuilder
impl GetSchemaCreationStatusOutputBuilder
sourcepub fn status(self, input: SchemaStatus) -> Self
pub fn status(self, input: SchemaStatus) -> Self
The current state of the schema (PROCESSING, FAILED, SUCCESS, or NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.
sourcepub fn set_status(self, input: Option<SchemaStatus>) -> Self
pub fn set_status(self, input: Option<SchemaStatus>) -> Self
The current state of the schema (PROCESSING, FAILED, SUCCESS, or NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.
sourcepub fn get_status(&self) -> &Option<SchemaStatus>
pub fn get_status(&self) -> &Option<SchemaStatus>
The current state of the schema (PROCESSING, FAILED, SUCCESS, or NOT_APPLICABLE). When the schema is in the ACTIVE state, you can add data.
sourcepub fn details(self, input: impl Into<String>) -> Self
pub fn details(self, input: impl Into<String>) -> Self
Detailed information about the status of the schema creation operation.
sourcepub fn set_details(self, input: Option<String>) -> Self
pub fn set_details(self, input: Option<String>) -> Self
Detailed information about the status of the schema creation operation.
sourcepub fn get_details(&self) -> &Option<String>
pub fn get_details(&self) -> &Option<String>
Detailed information about the status of the schema creation operation.
sourcepub fn build(self) -> GetSchemaCreationStatusOutput
pub fn build(self) -> GetSchemaCreationStatusOutput
Consumes the builder and constructs a GetSchemaCreationStatusOutput
.
Trait Implementations§
source§impl Clone for GetSchemaCreationStatusOutputBuilder
impl Clone for GetSchemaCreationStatusOutputBuilder
source§fn clone(&self) -> GetSchemaCreationStatusOutputBuilder
fn clone(&self) -> GetSchemaCreationStatusOutputBuilder
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 Default for GetSchemaCreationStatusOutputBuilder
impl Default for GetSchemaCreationStatusOutputBuilder
source§fn default() -> GetSchemaCreationStatusOutputBuilder
fn default() -> GetSchemaCreationStatusOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetSchemaCreationStatusOutputBuilder
impl PartialEq for GetSchemaCreationStatusOutputBuilder
source§fn eq(&self, other: &GetSchemaCreationStatusOutputBuilder) -> bool
fn eq(&self, other: &GetSchemaCreationStatusOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetSchemaCreationStatusOutputBuilder
Auto Trait Implementations§
impl Freeze for GetSchemaCreationStatusOutputBuilder
impl RefUnwindSafe for GetSchemaCreationStatusOutputBuilder
impl Send for GetSchemaCreationStatusOutputBuilder
impl Sync for GetSchemaCreationStatusOutputBuilder
impl Unpin for GetSchemaCreationStatusOutputBuilder
impl UnwindSafe for GetSchemaCreationStatusOutputBuilder
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>
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.