Struct aws_sdk_evidently::input::CreateFeatureInput  
source · #[non_exhaustive]pub struct CreateFeatureInput { /* private fields */ }Implementations§
source§impl CreateFeatureInput
 
impl CreateFeatureInput
sourcepub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<CreateFeature, AwsResponseRetryClassifier>, BuildError>
 
pub async fn make_operation(
    &self,
    _config: &Config
) -> Result<Operation<CreateFeature, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateFeature>
sourcepub fn builder() -> Builder
 
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateFeatureInput.
source§impl CreateFeatureInput
 
impl CreateFeatureInput
sourcepub fn project(&self) -> Option<&str>
 
pub fn project(&self) -> Option<&str>
The name or ARN of the project that is to contain the new feature.
sourcepub fn evaluation_strategy(&self) -> Option<&FeatureEvaluationStrategy>
 
pub fn evaluation_strategy(&self) -> Option<&FeatureEvaluationStrategy>
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) -> Option<&str>
 
pub fn description(&self) -> Option<&str>
An optional description of the feature.
sourcepub fn variations(&self) -> Option<&[VariationConfig]>
 
pub fn variations(&self) -> Option<&[VariationConfig]>
An array of structures that contain the configuration of the feature's different variations.
sourcepub fn default_variation(&self) -> Option<&str>
 
pub fn default_variation(&self) -> Option<&str>
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.
This variation must also be listed in the variations structure.
If you omit defaultVariation, the first variation listed in the variations structure is used as the default variation.
Assigns one or more tags (key-value pairs) to the feature.
Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.
You can associate as many as 50 tags with a feature.
For more information, see Tagging Amazon Web Services resources.
sourcepub fn entity_overrides(&self) -> Option<&HashMap<String, String>>
 
pub fn entity_overrides(&self) -> Option<&HashMap<String, String>>
Specify 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 CreateFeatureInput
 
impl Clone for CreateFeatureInput
source§fn clone(&self) -> CreateFeatureInput
 
fn clone(&self) -> CreateFeatureInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateFeatureInput
 
impl Debug for CreateFeatureInput
source§impl PartialEq<CreateFeatureInput> for CreateFeatureInput
 
impl PartialEq<CreateFeatureInput> for CreateFeatureInput
source§fn eq(&self, other: &CreateFeatureInput) -> bool
 
fn eq(&self, other: &CreateFeatureInput) -> bool
self and other values to be equal, and is used
by ==.