Class: Aws::AuditManager::Types::CreateAssessmentFrameworkControlSet

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-auditmanager/types.rb

Overview

Note:

When making an API call, you may pass CreateAssessmentFrameworkControlSet data as a hash:

{
  name: "ControlSetName",
  controls: [
    {
      id: "UUID",
    },
  ],
}

A ‘controlSet` entity that represents a collection of controls in AWS Audit Manager. This does not contain the control set ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#controlsArray<Types::CreateAssessmentFrameworkControl>

The list of controls within the control set. This does not contain the control set ID.



1390
1391
1392
1393
1394
1395
# File 'lib/aws-sdk-auditmanager/types.rb', line 1390

class CreateAssessmentFrameworkControlSet < Struct.new(
  :name,
  :controls)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the specified control set.

Returns:

  • (String)


1390
1391
1392
1393
1394
1395
# File 'lib/aws-sdk-auditmanager/types.rb', line 1390

class CreateAssessmentFrameworkControlSet < Struct.new(
  :name,
  :controls)
  SENSITIVE = []
  include Aws::Structure
end