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 step in the pentest job execution pipeline. Steps include preflight, static analysis, pentest, and finalizing.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
The date and time the step was created, in UTC format.
-
#name ⇒ String
The name of the step.
-
#status ⇒ String
The current status of the step.
-
#updated_at ⇒ Time
The date and time the step was last updated, in UTC format.
Instance Attribute Details
#created_at ⇒ Time
The date and time the step was created, in UTC format.
4463 4464 4465 4466 4467 4468 4469 4470 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4463 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the step. Valid values include PREFLIGHT, STATIC_ANALYSIS, PENTEST, and FINALIZING.
4463 4464 4465 4466 4467 4468 4469 4470 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4463 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the step.
4463 4464 4465 4466 4467 4468 4469 4470 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4463 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#updated_at ⇒ Time
The date and time the step was last updated, in UTC format.
4463 4464 4465 4466 4467 4468 4469 4470 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4463 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |