Class CfnExperimentTemplate
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.fis.CfnExperimentTemplate
- All Implemented Interfaces:
IConstruct,IDependable,IInspectable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:56.749Z")
@Stability(Stable)
public class CfnExperimentTemplate
extends CfnResource
implements IInspectable
A CloudFormation
AWS::FIS::ExperimentTemplate.
Specifies an experiment template.
An experiment template includes the following components:
- Targets : A target can be a specific resource in your AWS environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags.
- Actions : The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment.
- Stop conditions : If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm.
For more information, see Experiment templates in the AWS Fault Injection Simulator User Guide .
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.fis.*;
Object cloudWatchLogsConfiguration;
Object s3Configuration;
CfnExperimentTemplate cfnExperimentTemplate = CfnExperimentTemplate.Builder.create(this, "MyCfnExperimentTemplate")
.description("description")
.roleArn("roleArn")
.stopConditions(List.of(ExperimentTemplateStopConditionProperty.builder()
.source("source")
// the properties below are optional
.value("value")
.build()))
.tags(Map.of(
"tagsKey", "tags"))
.targets(Map.of(
"targetsKey", ExperimentTemplateTargetProperty.builder()
.resourceType("resourceType")
.selectionMode("selectionMode")
// the properties below are optional
.filters(List.of(ExperimentTemplateTargetFilterProperty.builder()
.path("path")
.values(List.of("values"))
.build()))
.parameters(Map.of(
"parametersKey", "parameters"))
.resourceArns(List.of("resourceArns"))
.resourceTags(Map.of(
"resourceTagsKey", "resourceTags"))
.build()))
// the properties below are optional
.actions(Map.of(
"actionsKey", ExperimentTemplateActionProperty.builder()
.actionId("actionId")
// the properties below are optional
.description("description")
.parameters(Map.of(
"parametersKey", "parameters"))
.startAfter(List.of("startAfter"))
.targets(Map.of(
"targetsKey", "targets"))
.build()))
.logConfiguration(ExperimentTemplateLogConfigurationProperty.builder()
.logSchemaVersion(123)
// the properties below are optional
.cloudWatchLogsConfiguration(cloudWatchLogsConfiguration)
.s3Configuration(s3Configuration)
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnExperimentTemplate.static interfaceSpecifies the configuration for experiment logging to CloudWatch Logs .static interfaceSpecifies an action for an experiment template.static interfaceSpecifies the configuration for experiment logging.static interfaceSpecifies a stop condition for an experiment template.static interfaceSpecifies a filter used for the target resource input in an experiment template.static interfaceSpecifies a target for an experiment.static interfaceSpecifies the configuration for experiment logging to Amazon S3 .Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionCfnExperimentTemplate(Construct scope, String id, CfnExperimentTemplateProps props) Create a newAWS::FIS::ExperimentTemplate.protectedCfnExperimentTemplate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnExperimentTemplate(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionThe actions for the experiment.The ID of the experiment template.A description for the experiment template.The configuration for experiment logging.The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.The stop conditions.getTags()The tags to apply to the experiment template.The targets for the experiment.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetActions(Map<String, Object> value) The actions for the experiment.voidsetActions(IResolvable value) The actions for the experiment.voidsetDescription(String value) A description for the experiment template.voidsetLogConfiguration(IResolvable value) The configuration for experiment logging.voidThe configuration for experiment logging.voidsetRoleArn(String value) The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.voidsetStopConditions(List<Object> value) The stop conditions.voidsetStopConditions(IResolvable value) The stop conditions.voidsetTargets(Map<String, Object> value) The targets for the experiment.voidsetTargets(IResolvable value) The targets for the experiment.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnExperimentTemplate
protected CfnExperimentTemplate(software.amazon.jsii.JsiiObjectRef objRef) -
CfnExperimentTemplate
protected CfnExperimentTemplate(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnExperimentTemplate
@Stability(Stable) public CfnExperimentTemplate(@NotNull Construct scope, @NotNull String id, @NotNull CfnExperimentTemplateProps props) Create a newAWS::FIS::ExperimentTemplate.- Parameters:
scope-- scope in which this resource is defined.
id-- scoped id of the resource.
props-- resource properties.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrId
The ID of the experiment template. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getTags
The tags to apply to the experiment template. -
getDescription
A description for the experiment template. -
setDescription
A description for the experiment template. -
getRoleArn
The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf. -
setRoleArn
The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf. -
getStopConditions
The stop conditions. -
setStopConditions
The stop conditions. -
setStopConditions
The stop conditions. -
getTargets
The targets for the experiment. -
setTargets
The targets for the experiment. -
setTargets
The targets for the experiment. -
getActions
The actions for the experiment. -
setActions
The actions for the experiment. -
setActions
The actions for the experiment. -
getLogConfiguration
The configuration for experiment logging. -
setLogConfiguration
The configuration for experiment logging. -
setLogConfiguration
@Stability(Stable) public void setLogConfiguration(@Nullable CfnExperimentTemplate.ExperimentTemplateLogConfigurationProperty value) The configuration for experiment logging.
-