#[non_exhaustive]pub struct PropertyNameSuggestionBuilder { /* private fields */ }
Expand description
A builder for PropertyNameSuggestion
.
Implementations§
source§impl PropertyNameSuggestionBuilder
impl PropertyNameSuggestionBuilder
sourcepub fn property_name(self, input: impl Into<String>) -> Self
pub fn property_name(self, input: impl Into<String>) -> Self
A suggested property name based on what you entered in the search textbox in the SageMaker console.
sourcepub fn set_property_name(self, input: Option<String>) -> Self
pub fn set_property_name(self, input: Option<String>) -> Self
A suggested property name based on what you entered in the search textbox in the SageMaker console.
sourcepub fn build(self) -> PropertyNameSuggestion
pub fn build(self) -> PropertyNameSuggestion
Consumes the builder and constructs a PropertyNameSuggestion
.
Trait Implementations§
source§impl Clone for PropertyNameSuggestionBuilder
impl Clone for PropertyNameSuggestionBuilder
source§fn clone(&self) -> PropertyNameSuggestionBuilder
fn clone(&self) -> PropertyNameSuggestionBuilder
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 PropertyNameSuggestionBuilder
impl Default for PropertyNameSuggestionBuilder
source§fn default() -> PropertyNameSuggestionBuilder
fn default() -> PropertyNameSuggestionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PropertyNameSuggestionBuilder> for PropertyNameSuggestionBuilder
impl PartialEq<PropertyNameSuggestionBuilder> for PropertyNameSuggestionBuilder
source§fn eq(&self, other: &PropertyNameSuggestionBuilder) -> bool
fn eq(&self, other: &PropertyNameSuggestionBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.