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§
source§impl UpdateFeature
 
impl UpdateFeature
sourcepub async fn customize(
    self
) -> Result<CustomizableOperation<UpdateFeature, AwsResponseRetryClassifier>, SdkError<UpdateFeatureError>>
 
pub async fn customize(
    self
) -> Result<CustomizableOperation<UpdateFeature, AwsResponseRetryClassifier>, SdkError<UpdateFeatureError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
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§
source§impl Clone for UpdateFeature
 
impl Clone for UpdateFeature
source§fn clone(&self) -> UpdateFeature
 
fn clone(&self) -> UpdateFeature
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read more