Struct aws_sdk_fis::model::Experiment
source · [−]#[non_exhaustive]pub struct Experiment {
pub id: Option<String>,
pub experiment_template_id: Option<String>,
pub role_arn: Option<String>,
pub state: Option<ExperimentState>,
pub targets: Option<HashMap<String, ExperimentTarget>>,
pub actions: Option<HashMap<String, ExperimentAction>>,
pub stop_conditions: Option<Vec<ExperimentStopCondition>>,
pub creation_time: Option<DateTime>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
pub log_configuration: Option<ExperimentLogConfiguration>,
}
Expand description
Describes an experiment.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The ID of the experiment.
experiment_template_id: Option<String>
The ID of the experiment template.
role_arn: Option<String>
The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.
state: Option<ExperimentState>
The state of the experiment.
targets: Option<HashMap<String, ExperimentTarget>>
The targets for the experiment.
actions: Option<HashMap<String, ExperimentAction>>
The actions for the experiment.
stop_conditions: Option<Vec<ExperimentStopCondition>>
The stop conditions for the experiment.
creation_time: Option<DateTime>
The time that the experiment was created.
start_time: Option<DateTime>
The time that the experiment started.
end_time: Option<DateTime>
The time that the experiment ended.
The tags for the experiment.
log_configuration: Option<ExperimentLogConfiguration>
The configuration for experiment logging.
Implementations
sourceimpl Experiment
impl Experiment
sourcepub fn experiment_template_id(&self) -> Option<&str>
pub fn experiment_template_id(&self) -> Option<&str>
The ID of the experiment template.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.
sourcepub fn state(&self) -> Option<&ExperimentState>
pub fn state(&self) -> Option<&ExperimentState>
The state of the experiment.
sourcepub fn targets(&self) -> Option<&HashMap<String, ExperimentTarget>>
pub fn targets(&self) -> Option<&HashMap<String, ExperimentTarget>>
The targets for the experiment.
sourcepub fn actions(&self) -> Option<&HashMap<String, ExperimentAction>>
pub fn actions(&self) -> Option<&HashMap<String, ExperimentAction>>
The actions for the experiment.
sourcepub fn stop_conditions(&self) -> Option<&[ExperimentStopCondition]>
pub fn stop_conditions(&self) -> Option<&[ExperimentStopCondition]>
The stop conditions for the experiment.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time that the experiment was created.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time that the experiment started.
The tags for the experiment.
sourcepub fn log_configuration(&self) -> Option<&ExperimentLogConfiguration>
pub fn log_configuration(&self) -> Option<&ExperimentLogConfiguration>
The configuration for experiment logging.
sourceimpl Experiment
impl Experiment
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture Experiment
Trait Implementations
sourceimpl Clone for Experiment
impl Clone for Experiment
sourcefn clone(&self) -> Experiment
fn clone(&self) -> Experiment
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
sourceimpl Debug for Experiment
impl Debug for Experiment
sourceimpl PartialEq<Experiment> for Experiment
impl PartialEq<Experiment> for Experiment
sourcefn eq(&self, other: &Experiment) -> bool
fn eq(&self, other: &Experiment) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Experiment) -> bool
fn ne(&self, other: &Experiment) -> bool
This method tests for !=
.
impl StructuralPartialEq for Experiment
Auto Trait Implementations
impl RefUnwindSafe for Experiment
impl Send for Experiment
impl Sync for Experiment
impl Unpin for Experiment
impl UnwindSafe for Experiment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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