Class: Aws::SecurityAgent::Types::Step
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::Step
- Defined in:
- gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb
Overview
Represents a single step in pentest job execution
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
Timestamp when the step was created.
-
#name ⇒ String
Name of the execution step.
-
#status ⇒ String
Current status of the step.
-
#updated_at ⇒ Time
Timestamp when the step was last updated.
Instance Attribute Details
#created_at ⇒ Time
Timestamp when the step was created
3373 3374 3375 3376 3377 3378 3379 3380 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3373 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the execution step
3373 3374 3375 3376 3377 3378 3379 3380 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3373 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |