Class: Aws::AppTest::Types::Step
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppTest::Types::Step
- Defined in:
- gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb
Overview
Defines a step.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ Types::StepAction
The action of the step.
-
#description ⇒ String
The description of the step.
-
#name ⇒ String
The name of the step.
Instance Attribute Details
#action ⇒ Types::StepAction
The action of the step.
2403 2404 2405 2406 2407 2408 2409 |
# File 'gems/aws-sdk-apptest/lib/aws-sdk-apptest/types.rb', line 2403 class Step < Struct.new( :name, :description, :action) SENSITIVE = [] include Aws::Structure end |