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.
4456 4457 4458 4459 4460 4461 4462 4463 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4456 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.
4456 4457 4458 4459 4460 4461 4462 4463 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4456 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the step.
4456 4457 4458 4459 4460 4461 4462 4463 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4456 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.
4456 4457 4458 4459 4460 4461 4462 4463 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 4456 class Step < Struct.new( :name, :status, :created_at, :updated_at) SENSITIVE = [] include Aws::Structure end |