#[non_exhaustive]pub struct CreateExperimentTemplateStopConditionInput {
pub source: Option<String>,
pub value: Option<String>,
}
Expand description
Specifies a stop condition for an experiment template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.source: Option<String>
The source for the stop condition. Specify aws:cloudwatch:alarm
if the stop condition is defined by a CloudWatch alarm. Specify none
if there is no stop condition.
value: Option<String>
The Amazon Resource Name (ARN) of the CloudWatch alarm. This is required if the source is a CloudWatch alarm.
Implementations§
source§impl CreateExperimentTemplateStopConditionInput
impl CreateExperimentTemplateStopConditionInput
source§impl CreateExperimentTemplateStopConditionInput
impl CreateExperimentTemplateStopConditionInput
sourcepub fn builder() -> CreateExperimentTemplateStopConditionInputBuilder
pub fn builder() -> CreateExperimentTemplateStopConditionInputBuilder
Creates a new builder-style object to manufacture CreateExperimentTemplateStopConditionInput
.
Trait Implementations§
source§impl Clone for CreateExperimentTemplateStopConditionInput
impl Clone for CreateExperimentTemplateStopConditionInput
source§fn clone(&self) -> CreateExperimentTemplateStopConditionInput
fn clone(&self) -> CreateExperimentTemplateStopConditionInput
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 PartialEq<CreateExperimentTemplateStopConditionInput> for CreateExperimentTemplateStopConditionInput
impl PartialEq<CreateExperimentTemplateStopConditionInput> for CreateExperimentTemplateStopConditionInput
source§fn eq(&self, other: &CreateExperimentTemplateStopConditionInput) -> bool
fn eq(&self, other: &CreateExperimentTemplateStopConditionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateExperimentTemplateStopConditionInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateExperimentTemplateStopConditionInput
impl Send for CreateExperimentTemplateStopConditionInput
impl Sync for CreateExperimentTemplateStopConditionInput
impl Unpin for CreateExperimentTemplateStopConditionInput
impl UnwindSafe for CreateExperimentTemplateStopConditionInput
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