Struct aws_sdk_schemas::types::builders::SchemaSummaryBuilder
source · #[non_exhaustive]pub struct SchemaSummaryBuilder { /* private fields */ }Expand description
A builder for SchemaSummary.
Implementations§
source§impl SchemaSummaryBuilder
impl SchemaSummaryBuilder
sourcepub fn last_modified(self, input: DateTime) -> Self
pub fn last_modified(self, input: DateTime) -> Self
The date and time that schema was 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 schema was modified.
sourcepub fn get_last_modified(&self) -> &Option<DateTime>
pub fn get_last_modified(&self) -> &Option<DateTime>
The date and time that schema was modified.
sourcepub fn schema_arn(self, input: impl Into<String>) -> Self
pub fn schema_arn(self, input: impl Into<String>) -> Self
The ARN of the schema.
sourcepub fn set_schema_arn(self, input: Option<String>) -> Self
pub fn set_schema_arn(self, input: Option<String>) -> Self
The ARN of the schema.
sourcepub fn get_schema_arn(&self) -> &Option<String>
pub fn get_schema_arn(&self) -> &Option<String>
The ARN of the schema.
sourcepub fn schema_name(self, input: impl Into<String>) -> Self
pub fn schema_name(self, input: impl Into<String>) -> Self
The name of the schema.
sourcepub fn set_schema_name(self, input: Option<String>) -> Self
pub fn set_schema_name(self, input: Option<String>) -> Self
The name of the schema.
sourcepub fn get_schema_name(&self) -> &Option<String>
pub fn get_schema_name(&self) -> &Option<String>
The name of the schema.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
Tags associated with the schema.
Tags associated with the schema.
Tags associated with the schema.
sourcepub fn version_count(self, input: i64) -> Self
pub fn version_count(self, input: i64) -> Self
The number of versions available for the schema.
sourcepub fn set_version_count(self, input: Option<i64>) -> Self
pub fn set_version_count(self, input: Option<i64>) -> Self
The number of versions available for the schema.
sourcepub fn get_version_count(&self) -> &Option<i64>
pub fn get_version_count(&self) -> &Option<i64>
The number of versions available for the schema.
sourcepub fn build(self) -> SchemaSummary
pub fn build(self) -> SchemaSummary
Consumes the builder and constructs a SchemaSummary.
Trait Implementations§
source§impl Clone for SchemaSummaryBuilder
impl Clone for SchemaSummaryBuilder
source§fn clone(&self) -> SchemaSummaryBuilder
fn clone(&self) -> SchemaSummaryBuilder
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 SchemaSummaryBuilder
impl Debug for SchemaSummaryBuilder
source§impl Default for SchemaSummaryBuilder
impl Default for SchemaSummaryBuilder
source§fn default() -> SchemaSummaryBuilder
fn default() -> SchemaSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SchemaSummaryBuilder
impl PartialEq for SchemaSummaryBuilder
source§fn eq(&self, other: &SchemaSummaryBuilder) -> bool
fn eq(&self, other: &SchemaSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SchemaSummaryBuilder
Auto Trait Implementations§
impl Freeze for SchemaSummaryBuilder
impl RefUnwindSafe for SchemaSummaryBuilder
impl Send for SchemaSummaryBuilder
impl Sync for SchemaSummaryBuilder
impl Unpin for SchemaSummaryBuilder
impl UnwindSafe for SchemaSummaryBuilder
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.