Class: Aws::FIS::Types::CreateExperimentTemplateTargetInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::CreateExperimentTemplateTargetInput
- Defined in:
- gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb
Overview
Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or at least one resource tag. You cannot specify both ARNs and tags.
For more information, see Targets in the Fault Injection Simulator User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::ExperimentTemplateTargetInputFilter>
The filters to apply to identify target resources using specific attributes.
-
#parameters ⇒ Hash<String,String>
The resource type parameters.
-
#resource_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the resources.
-
#resource_tags ⇒ Hash<String,String>
The tags for the target resources.
-
#resource_type ⇒ String
The resource type.
-
#selection_mode ⇒ String
Scopes the identified resources to a specific count of the resources at random, or a percentage of the resources.
Instance Attribute Details
#filters ⇒ Array<Types::ExperimentTemplateTargetInputFilter>
The filters to apply to identify target resources using specific attributes.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
The resource type parameters.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |
#resource_arns ⇒ Array<String>
The Amazon Resource Names (ARNs) of the resources.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |
#resource_tags ⇒ Hash<String,String>
The tags for the target resources.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type. The resource type must be supported for the specified action.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |
#selection_mode ⇒ String
Scopes the identified resources to a specific count of the resources at random, or a percentage of the resources. All identified resources are included in the target.
ALL - Run the action on all identified targets. This is the default.
COUNT(n) - Run the action on the specified number of targets, chosen from the identified targets at random. For example, COUNT(1) selects one of the targets.
PERCENT(n) - Run the action on the specified percentage of targets, chosen from the identified targets at random. For example, PERCENT(25) selects 25% of the targets.
333 334 335 336 337 338 339 340 341 342 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 333 class CreateExperimentTemplateTargetInput < Struct.new( :resource_type, :resource_arns, :resource_tags, :filters, :selection_mode, :parameters) SENSITIVE = [] include Aws::Structure end |