Struct aws_sdk_evidently::operation::batch_evaluate_feature::builders::BatchEvaluateFeatureInputBuilder
source · #[non_exhaustive]pub struct BatchEvaluateFeatureInputBuilder { /* private fields */ }Expand description
A builder for BatchEvaluateFeatureInput.
Implementations§
source§impl BatchEvaluateFeatureInputBuilder
impl BatchEvaluateFeatureInputBuilder
sourcepub fn project(self, input: impl Into<String>) -> Self
pub fn project(self, input: impl Into<String>) -> Self
The name or ARN of the project that contains the feature being evaluated.
sourcepub fn set_project(self, input: Option<String>) -> Self
pub fn set_project(self, input: Option<String>) -> Self
The name or ARN of the project that contains the feature being evaluated.
sourcepub fn get_project(&self) -> &Option<String>
pub fn get_project(&self) -> &Option<String>
The name or ARN of the project that contains the feature being evaluated.
sourcepub fn requests(self, input: EvaluationRequest) -> Self
pub fn requests(self, input: EvaluationRequest) -> Self
Appends an item to requests.
To override the contents of this collection use set_requests.
An array of structures, where each structure assigns a feature variation to one user session.
sourcepub fn set_requests(self, input: Option<Vec<EvaluationRequest>>) -> Self
pub fn set_requests(self, input: Option<Vec<EvaluationRequest>>) -> Self
An array of structures, where each structure assigns a feature variation to one user session.
sourcepub fn get_requests(&self) -> &Option<Vec<EvaluationRequest>>
pub fn get_requests(&self) -> &Option<Vec<EvaluationRequest>>
An array of structures, where each structure assigns a feature variation to one user session.
sourcepub fn build(self) -> Result<BatchEvaluateFeatureInput, BuildError>
pub fn build(self) -> Result<BatchEvaluateFeatureInput, BuildError>
Consumes the builder and constructs a BatchEvaluateFeatureInput.
source§impl BatchEvaluateFeatureInputBuilder
impl BatchEvaluateFeatureInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<BatchEvaluateFeatureOutput, SdkError<BatchEvaluateFeatureError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<BatchEvaluateFeatureOutput, SdkError<BatchEvaluateFeatureError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for BatchEvaluateFeatureInputBuilder
impl Clone for BatchEvaluateFeatureInputBuilder
source§fn clone(&self) -> BatchEvaluateFeatureInputBuilder
fn clone(&self) -> BatchEvaluateFeatureInputBuilder
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 BatchEvaluateFeatureInputBuilder
impl Default for BatchEvaluateFeatureInputBuilder
source§fn default() -> BatchEvaluateFeatureInputBuilder
fn default() -> BatchEvaluateFeatureInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BatchEvaluateFeatureInputBuilder> for BatchEvaluateFeatureInputBuilder
impl PartialEq<BatchEvaluateFeatureInputBuilder> for BatchEvaluateFeatureInputBuilder
source§fn eq(&self, other: &BatchEvaluateFeatureInputBuilder) -> bool
fn eq(&self, other: &BatchEvaluateFeatureInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchEvaluateFeatureInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for BatchEvaluateFeatureInputBuilder
impl Send for BatchEvaluateFeatureInputBuilder
impl Sync for BatchEvaluateFeatureInputBuilder
impl Unpin for BatchEvaluateFeatureInputBuilder
impl UnwindSafe for BatchEvaluateFeatureInputBuilder
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