Class: Aws::Inspector2::Types::Step
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::Step
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-inspector2/types.rb
Overview
Details about the step associated with a finding.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_arn ⇒ String
The component ARN.
-
#component_id ⇒ String
The component ID.
-
#component_type ⇒ String
The component type.
Instance Attribute Details
#component_arn ⇒ String
The component ARN. The ARN can be null and is not displayed in the Amazon Web Services console.
8214 8215 8216 8217 8218 8219 8220 |
# File 'lib/aws-sdk-inspector2/types.rb', line 8214 class Step < Struct.new( :component_id, :component_type, :component_arn) SENSITIVE = [] include Aws::Structure end |