#[non_exhaustive]pub struct DatasetSchemaSummaryBuilder { /* private fields */ }Expand description
A builder for DatasetSchemaSummary.
Implementations§
source§impl DatasetSchemaSummaryBuilder
impl DatasetSchemaSummaryBuilder
sourcepub fn schema_arn(self, input: impl Into<String>) -> Self
pub fn schema_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (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 Amazon Resource Name (ARN) of the schema.
sourcepub fn get_schema_arn(&self) -> &Option<String>
pub fn get_schema_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the schema.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the schema was created.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the schema was created.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_creation_date_time(&self) -> &Option<DateTime>
The date and time (in Unix time) that the schema was created.
sourcepub fn last_updated_date_time(self, input: DateTime) -> Self
pub fn last_updated_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the schema was last updated.
sourcepub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the schema was last updated.
sourcepub fn get_last_updated_date_time(&self) -> &Option<DateTime>
pub fn get_last_updated_date_time(&self) -> &Option<DateTime>
The date and time (in Unix time) that the schema was last updated.
sourcepub fn domain(self, input: Domain) -> Self
pub fn domain(self, input: Domain) -> Self
The domain of a schema that you created for a dataset in a Domain dataset group.
sourcepub fn set_domain(self, input: Option<Domain>) -> Self
pub fn set_domain(self, input: Option<Domain>) -> Self
The domain of a schema that you created for a dataset in a Domain dataset group.
sourcepub fn get_domain(&self) -> &Option<Domain>
pub fn get_domain(&self) -> &Option<Domain>
The domain of a schema that you created for a dataset in a Domain dataset group.
sourcepub fn build(self) -> DatasetSchemaSummary
pub fn build(self) -> DatasetSchemaSummary
Consumes the builder and constructs a DatasetSchemaSummary.
Trait Implementations§
source§impl Clone for DatasetSchemaSummaryBuilder
impl Clone for DatasetSchemaSummaryBuilder
source§fn clone(&self) -> DatasetSchemaSummaryBuilder
fn clone(&self) -> DatasetSchemaSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DatasetSchemaSummaryBuilder
impl Debug for DatasetSchemaSummaryBuilder
source§impl Default for DatasetSchemaSummaryBuilder
impl Default for DatasetSchemaSummaryBuilder
source§fn default() -> DatasetSchemaSummaryBuilder
fn default() -> DatasetSchemaSummaryBuilder
source§impl PartialEq for DatasetSchemaSummaryBuilder
impl PartialEq for DatasetSchemaSummaryBuilder
source§fn eq(&self, other: &DatasetSchemaSummaryBuilder) -> bool
fn eq(&self, other: &DatasetSchemaSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetSchemaSummaryBuilder
Auto Trait Implementations§
impl Freeze for DatasetSchemaSummaryBuilder
impl RefUnwindSafe for DatasetSchemaSummaryBuilder
impl Send for DatasetSchemaSummaryBuilder
impl Sync for DatasetSchemaSummaryBuilder
impl Unpin for DatasetSchemaSummaryBuilder
impl UnwindSafe for DatasetSchemaSummaryBuilder
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