Struct aws_sdk_evidently::types::builders::LaunchGroupBuilder
source · #[non_exhaustive]pub struct LaunchGroupBuilder { /* private fields */ }Expand description
A builder for LaunchGroup.
Implementations§
source§impl LaunchGroupBuilder
impl LaunchGroupBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the launch group.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the launch group.
sourcepub fn feature_variations(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn feature_variations( self, k: impl Into<String>, v: impl Into<String> ) -> Self
Adds a key-value pair to feature_variations.
To override the contents of this collection use set_feature_variations.
The feature variation for this launch group. This is a key-value pair.
sourcepub fn set_feature_variations(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_feature_variations( self, input: Option<HashMap<String, String>> ) -> Self
The feature variation for this launch group. This is a key-value pair.
sourcepub fn build(self) -> LaunchGroup
pub fn build(self) -> LaunchGroup
Consumes the builder and constructs a LaunchGroup.
Trait Implementations§
source§impl Clone for LaunchGroupBuilder
impl Clone for LaunchGroupBuilder
source§fn clone(&self) -> LaunchGroupBuilder
fn clone(&self) -> LaunchGroupBuilder
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 LaunchGroupBuilder
impl Debug for LaunchGroupBuilder
source§impl Default for LaunchGroupBuilder
impl Default for LaunchGroupBuilder
source§fn default() -> LaunchGroupBuilder
fn default() -> LaunchGroupBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<LaunchGroupBuilder> for LaunchGroupBuilder
impl PartialEq<LaunchGroupBuilder> for LaunchGroupBuilder
source§fn eq(&self, other: &LaunchGroupBuilder) -> bool
fn eq(&self, other: &LaunchGroupBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.