Struct aws_sdk_evidently::client::fluent_builders::UpdateFeature
source · [−]pub struct UpdateFeature { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateFeature
.
Updates an existing feature.
You can't use this operation to update the tags of an existing feature. Instead, use TagResource.
Implementations
sourceimpl UpdateFeature
impl UpdateFeature
sourcepub async fn send(
self
) -> Result<UpdateFeatureOutput, SdkError<UpdateFeatureError>>
pub async fn send(
self
) -> Result<UpdateFeatureOutput, SdkError<UpdateFeatureError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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 to be updated.
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 to be updated.
sourcepub fn set_feature(self, input: Option<String>) -> Self
pub fn set_feature(self, input: Option<String>) -> Self
The name of the feature to be updated.
sourcepub fn evaluation_strategy(self, input: FeatureEvaluationStrategy) -> Self
pub fn evaluation_strategy(self, input: FeatureEvaluationStrategy) -> Self
Specify ALL_RULES
to activate the traffic allocation specified by any ongoing launches or experiments. Specify DEFAULT_VARIATION
to serve the default variation to all users instead.
sourcepub fn set_evaluation_strategy(
self,
input: Option<FeatureEvaluationStrategy>
) -> Self
pub fn set_evaluation_strategy(
self,
input: Option<FeatureEvaluationStrategy>
) -> Self
Specify ALL_RULES
to activate the traffic allocation specified by any ongoing launches or experiments. Specify DEFAULT_VARIATION
to serve the default variation to all users instead.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
An optional description of the feature.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
An optional description of the feature.
sourcepub fn add_or_update_variations(self, input: VariationConfig) -> Self
pub fn add_or_update_variations(self, input: VariationConfig) -> Self
Appends an item to addOrUpdateVariations
.
To override the contents of this collection use set_add_or_update_variations
.
To update variation configurations for this feature, or add new ones, specify this structure. In this array, include any variations that you want to add or update. If the array includes a variation name that already exists for this feature, it is updated. If it includes a new variation name, it is added as a new variation.
sourcepub fn set_add_or_update_variations(
self,
input: Option<Vec<VariationConfig>>
) -> Self
pub fn set_add_or_update_variations(
self,
input: Option<Vec<VariationConfig>>
) -> Self
To update variation configurations for this feature, or add new ones, specify this structure. In this array, include any variations that you want to add or update. If the array includes a variation name that already exists for this feature, it is updated. If it includes a new variation name, it is added as a new variation.
sourcepub fn remove_variations(self, input: impl Into<String>) -> Self
pub fn remove_variations(self, input: impl Into<String>) -> Self
Appends an item to removeVariations
.
To override the contents of this collection use set_remove_variations
.
Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and does not report an error.
This operation fails if you try to remove a variation that is part of an ongoing launch or experiment.
sourcepub fn set_remove_variations(self, input: Option<Vec<String>>) -> Self
pub fn set_remove_variations(self, input: Option<Vec<String>>) -> Self
Removes a variation from the feature. If the variation you specify doesn't exist, then this makes no change and does not report an error.
This operation fails if you try to remove a variation that is part of an ongoing launch or experiment.
sourcepub fn default_variation(self, input: impl Into<String>) -> Self
pub fn default_variation(self, input: impl Into<String>) -> Self
The name of the variation to use as the default variation. The default variation is served to users who are not allocated to any ongoing launches or experiments of this feature.
sourcepub fn set_default_variation(self, input: Option<String>) -> Self
pub fn set_default_variation(self, input: Option<String>) -> Self
The name of the variation to use as the default variation. The default variation is served to users who are not allocated to any ongoing launches or experiments of this feature.
sourcepub fn entity_overrides(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn entity_overrides(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
Adds a key-value pair to entityOverrides
.
To override the contents of this collection use set_entity_overrides
.
Specified users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served.
sourcepub fn set_entity_overrides(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_entity_overrides(
self,
input: Option<HashMap<String, String>>
) -> Self
Specified users that should always be served a specific variation of a feature. Each user is specified by a key-value pair . For each key, specify a user by entering their user ID, account ID, or some other identifier. For the value, specify the name of the variation that they are to be served.
Trait Implementations
sourceimpl Clone for UpdateFeature
impl Clone for UpdateFeature
sourcefn clone(&self) -> UpdateFeature
fn clone(&self) -> UpdateFeature
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for UpdateFeature
impl Send for UpdateFeature
impl Sync for UpdateFeature
impl Unpin for UpdateFeature
impl !UnwindSafe for UpdateFeature
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more