Struct aws_sdk_fis::types::builders::ExperimentOptionsBuilder
source · #[non_exhaustive]pub struct ExperimentOptionsBuilder { /* private fields */ }Expand description
A builder for ExperimentOptions.
Implementations§
source§impl ExperimentOptionsBuilder
impl ExperimentOptionsBuilder
sourcepub fn account_targeting(self, input: AccountTargeting) -> Self
pub fn account_targeting(self, input: AccountTargeting) -> Self
The account targeting setting for an experiment.
sourcepub fn set_account_targeting(self, input: Option<AccountTargeting>) -> Self
pub fn set_account_targeting(self, input: Option<AccountTargeting>) -> Self
The account targeting setting for an experiment.
sourcepub fn get_account_targeting(&self) -> &Option<AccountTargeting>
pub fn get_account_targeting(&self) -> &Option<AccountTargeting>
The account targeting setting for an experiment.
sourcepub fn empty_target_resolution_mode(
self,
input: EmptyTargetResolutionMode
) -> Self
pub fn empty_target_resolution_mode( self, input: EmptyTargetResolutionMode ) -> Self
The empty target resolution mode for an experiment.
sourcepub fn set_empty_target_resolution_mode(
self,
input: Option<EmptyTargetResolutionMode>
) -> Self
pub fn set_empty_target_resolution_mode( self, input: Option<EmptyTargetResolutionMode> ) -> Self
The empty target resolution mode for an experiment.
sourcepub fn get_empty_target_resolution_mode(
&self
) -> &Option<EmptyTargetResolutionMode>
pub fn get_empty_target_resolution_mode( &self ) -> &Option<EmptyTargetResolutionMode>
The empty target resolution mode for an experiment.
sourcepub fn actions_mode(self, input: ActionsMode) -> Self
pub fn actions_mode(self, input: ActionsMode) -> Self
The actions mode of the experiment that is set from the StartExperiment API command.
sourcepub fn set_actions_mode(self, input: Option<ActionsMode>) -> Self
pub fn set_actions_mode(self, input: Option<ActionsMode>) -> Self
The actions mode of the experiment that is set from the StartExperiment API command.
sourcepub fn get_actions_mode(&self) -> &Option<ActionsMode>
pub fn get_actions_mode(&self) -> &Option<ActionsMode>
The actions mode of the experiment that is set from the StartExperiment API command.
sourcepub fn build(self) -> ExperimentOptions
pub fn build(self) -> ExperimentOptions
Consumes the builder and constructs a ExperimentOptions.
Trait Implementations§
source§impl Clone for ExperimentOptionsBuilder
impl Clone for ExperimentOptionsBuilder
source§fn clone(&self) -> ExperimentOptionsBuilder
fn clone(&self) -> ExperimentOptionsBuilder
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 ExperimentOptionsBuilder
impl Debug for ExperimentOptionsBuilder
source§impl Default for ExperimentOptionsBuilder
impl Default for ExperimentOptionsBuilder
source§fn default() -> ExperimentOptionsBuilder
fn default() -> ExperimentOptionsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ExperimentOptionsBuilder
impl PartialEq for ExperimentOptionsBuilder
source§fn eq(&self, other: &ExperimentOptionsBuilder) -> bool
fn eq(&self, other: &ExperimentOptionsBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExperimentOptionsBuilder
Auto Trait Implementations§
impl Freeze for ExperimentOptionsBuilder
impl RefUnwindSafe for ExperimentOptionsBuilder
impl Send for ExperimentOptionsBuilder
impl Sync for ExperimentOptionsBuilder
impl Unpin for ExperimentOptionsBuilder
impl UnwindSafe for ExperimentOptionsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.