#[non_exhaustive]pub struct ProjectDescriptionBuilder { /* private fields */ }Expand description
A builder for ProjectDescription.
Implementations§
source§impl ProjectDescriptionBuilder
impl ProjectDescriptionBuilder
sourcepub fn project_arn(self, input: impl Into<String>) -> Self
pub fn project_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the project.
sourcepub fn set_project_arn(self, input: Option<String>) -> Self
pub fn set_project_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the project.
sourcepub fn get_project_arn(&self) -> &Option<String>
pub fn get_project_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the project.
sourcepub fn creation_timestamp(self, input: DateTime) -> Self
pub fn creation_timestamp(self, input: DateTime) -> Self
The Unix timestamp for the date and time that the project was created.
sourcepub fn set_creation_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_creation_timestamp(self, input: Option<DateTime>) -> Self
The Unix timestamp for the date and time that the project was created.
sourcepub fn get_creation_timestamp(&self) -> &Option<DateTime>
pub fn get_creation_timestamp(&self) -> &Option<DateTime>
The Unix timestamp for the date and time that the project was created.
sourcepub fn status(self, input: ProjectStatus) -> Self
pub fn status(self, input: ProjectStatus) -> Self
The current status of the project.
sourcepub fn set_status(self, input: Option<ProjectStatus>) -> Self
pub fn set_status(self, input: Option<ProjectStatus>) -> Self
The current status of the project.
sourcepub fn get_status(&self) -> &Option<ProjectStatus>
pub fn get_status(&self) -> &Option<ProjectStatus>
The current status of the project.
sourcepub fn datasets(self, input: DatasetMetadata) -> Self
pub fn datasets(self, input: DatasetMetadata) -> Self
Appends an item to datasets.
To override the contents of this collection use set_datasets.
Information about the training and test datasets in the project.
sourcepub fn set_datasets(self, input: Option<Vec<DatasetMetadata>>) -> Self
pub fn set_datasets(self, input: Option<Vec<DatasetMetadata>>) -> Self
Information about the training and test datasets in the project.
sourcepub fn get_datasets(&self) -> &Option<Vec<DatasetMetadata>>
pub fn get_datasets(&self) -> &Option<Vec<DatasetMetadata>>
Information about the training and test datasets in the project.
sourcepub fn feature(self, input: CustomizationFeature) -> Self
pub fn feature(self, input: CustomizationFeature) -> Self
Specifies the project that is being customized.
sourcepub fn set_feature(self, input: Option<CustomizationFeature>) -> Self
pub fn set_feature(self, input: Option<CustomizationFeature>) -> Self
Specifies the project that is being customized.
sourcepub fn get_feature(&self) -> &Option<CustomizationFeature>
pub fn get_feature(&self) -> &Option<CustomizationFeature>
Specifies the project that is being customized.
sourcepub fn auto_update(self, input: ProjectAutoUpdate) -> Self
pub fn auto_update(self, input: ProjectAutoUpdate) -> Self
Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
sourcepub fn set_auto_update(self, input: Option<ProjectAutoUpdate>) -> Self
pub fn set_auto_update(self, input: Option<ProjectAutoUpdate>) -> Self
Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
sourcepub fn get_auto_update(&self) -> &Option<ProjectAutoUpdate>
pub fn get_auto_update(&self) -> &Option<ProjectAutoUpdate>
Indicates whether automatic retraining will be attempted for the versions of the project. Applies only to adapters.
sourcepub fn build(self) -> ProjectDescription
pub fn build(self) -> ProjectDescription
Consumes the builder and constructs a ProjectDescription.
Trait Implementations§
source§impl Clone for ProjectDescriptionBuilder
impl Clone for ProjectDescriptionBuilder
source§fn clone(&self) -> ProjectDescriptionBuilder
fn clone(&self) -> ProjectDescriptionBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ProjectDescriptionBuilder
impl Debug for ProjectDescriptionBuilder
source§impl Default for ProjectDescriptionBuilder
impl Default for ProjectDescriptionBuilder
source§fn default() -> ProjectDescriptionBuilder
fn default() -> ProjectDescriptionBuilder
source§impl PartialEq for ProjectDescriptionBuilder
impl PartialEq for ProjectDescriptionBuilder
source§fn eq(&self, other: &ProjectDescriptionBuilder) -> bool
fn eq(&self, other: &ProjectDescriptionBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ProjectDescriptionBuilder
Auto Trait Implementations§
impl Freeze for ProjectDescriptionBuilder
impl RefUnwindSafe for ProjectDescriptionBuilder
impl Send for ProjectDescriptionBuilder
impl Sync for ProjectDescriptionBuilder
impl Unpin for ProjectDescriptionBuilder
impl UnwindSafe for ProjectDescriptionBuilder
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