Struct aws_sdk_datazone::types::builders::AcceptChoiceBuilder
source · #[non_exhaustive]pub struct AcceptChoiceBuilder { /* private fields */ }
Expand description
A builder for AcceptChoice
.
Implementations§
source§impl AcceptChoiceBuilder
impl AcceptChoiceBuilder
sourcepub fn prediction_target(self, input: impl Into<String>) -> Self
pub fn prediction_target(self, input: impl Into<String>) -> Self
Specifies the target (for example, a column name) where a prediction can be accepted.
sourcepub fn set_prediction_target(self, input: Option<String>) -> Self
pub fn set_prediction_target(self, input: Option<String>) -> Self
Specifies the target (for example, a column name) where a prediction can be accepted.
sourcepub fn get_prediction_target(&self) -> &Option<String>
pub fn get_prediction_target(&self) -> &Option<String>
Specifies the target (for example, a column name) where a prediction can be accepted.
sourcepub fn prediction_choice(self, input: i32) -> Self
pub fn prediction_choice(self, input: i32) -> Self
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
sourcepub fn set_prediction_choice(self, input: Option<i32>) -> Self
pub fn set_prediction_choice(self, input: Option<i32>) -> Self
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
sourcepub fn get_prediction_choice(&self) -> &Option<i32>
pub fn get_prediction_choice(&self) -> &Option<i32>
Specifies the prediction (aka, the automatically generated piece of metadata) that can be accepted.
sourcepub fn build(self) -> AcceptChoice
pub fn build(self) -> AcceptChoice
Consumes the builder and constructs a AcceptChoice
.
Trait Implementations§
source§impl Clone for AcceptChoiceBuilder
impl Clone for AcceptChoiceBuilder
source§fn clone(&self) -> AcceptChoiceBuilder
fn clone(&self) -> AcceptChoiceBuilder
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 AcceptChoiceBuilder
impl Debug for AcceptChoiceBuilder
source§impl Default for AcceptChoiceBuilder
impl Default for AcceptChoiceBuilder
source§fn default() -> AcceptChoiceBuilder
fn default() -> AcceptChoiceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AcceptChoiceBuilder
impl PartialEq for AcceptChoiceBuilder
source§fn eq(&self, other: &AcceptChoiceBuilder) -> bool
fn eq(&self, other: &AcceptChoiceBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AcceptChoiceBuilder
Auto Trait Implementations§
impl RefUnwindSafe for AcceptChoiceBuilder
impl Send for AcceptChoiceBuilder
impl Sync for AcceptChoiceBuilder
impl Unpin for AcceptChoiceBuilder
impl UnwindSafe for AcceptChoiceBuilder
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