Class: Aws::AuditManager::Types::ControlSet
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::ControlSet
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
A set of controls in Audit Manager.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#controls ⇒ Array<Types::Control>
The list of controls within the control set.
-
#id ⇒ String
The identifier of the control set in the assessment.
-
#name ⇒ String
The name of the control set.
Instance Attribute Details
#controls ⇒ Array<Types::Control>
The list of controls within the control set.
1484 1485 1486 1487 1488 1489 1490 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1484 class ControlSet < Struct.new( :id, :name, :controls) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The identifier of the control set in the assessment. This is the control set name in a plain string format.
1484 1485 1486 1487 1488 1489 1490 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1484 class ControlSet < Struct.new( :id, :name, :controls) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the control set.
1484 1485 1486 1487 1488 1489 1490 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 1484 class ControlSet < Struct.new( :id, :name, :controls) SENSITIVE = [] include Aws::Structure end |