Class: Aws::FIS::Types::StartExperimentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::StartExperimentRequest
- Defined in:
- gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb
Overview
Note:
When making an API call, you may pass StartExperimentRequest data as a hash:
{
client_token: "ClientToken", # required
experiment_template_id: "ExperimentTemplateId", # required
tags: {
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#experiment_template_id ⇒ String
The ID of the experiment template.
-
#tags ⇒ Hash<String,String>
The tags to apply to the experiment.
Instance Attribute Details
#client_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
A suitable default value is auto-generated. You should normally not need to pass this option.
1565 1566 1567 1568 1569 1570 1571 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1565 class StartExperimentRequest < Struct.new( :client_token, :experiment_template_id, :tags) SENSITIVE = [] include Aws::Structure end |
#experiment_template_id ⇒ String
The ID of the experiment template.
1565 1566 1567 1568 1569 1570 1571 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1565 class StartExperimentRequest < Struct.new( :client_token, :experiment_template_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags to apply to the experiment.
1565 1566 1567 1568 1569 1570 1571 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1565 class StartExperimentRequest < Struct.new( :client_token, :experiment_template_id, :tags) SENSITIVE = [] include Aws::Structure end |