interface ExperimentTemplateStopConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FIS.CfnExperimentTemplatePropsMixin.ExperimentTemplateStopConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfis#CfnExperimentTemplatePropsMixin_ExperimentTemplateStopConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fis.CfnExperimentTemplatePropsMixin.ExperimentTemplateStopConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_fis.CfnExperimentTemplatePropsMixin.ExperimentTemplateStopConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fis » CfnExperimentTemplatePropsMixin » ExperimentTemplateStopConditionProperty |
Specifies a stop condition for an experiment template.
For more information, see Stop conditions in the AWS Fault Injection Service User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fis as fis } from '@aws-cdk/cfn-property-mixins';
const experimentTemplateStopConditionProperty: fis.CfnExperimentTemplatePropsMixin.ExperimentTemplateStopConditionProperty = {
source: 'source',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| source? | string | The source for the stop condition. |
| value? | string | IComposite | The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable. |
source?
Type:
string
(optional)
The source for the stop condition.
value?
Type:
string | IComposite
(optional)
The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

.NET
Go
Java
Python
TypeScript