Class: Aws::AuditManager::Types::UpdateAssessmentFrameworkControlSet

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 UpdateAssessmentFrameworkControlSet data as a hash:

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

A ‘controlSet` entity that represents a collection of controls in Audit Manager. This doesn’t contain the control set ID.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#controlsArray<Types::CreateAssessmentFrameworkControl>

The list of controls that are contained within the control set.



4879
4880
4881
4882
4883
4884
4885
# File 'lib/aws-sdk-auditmanager/types.rb', line 4879

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

#idString

The unique identifier for the control set.

Returns:

  • (String)


4879
4880
4881
4882
4883
4884
4885
# File 'lib/aws-sdk-auditmanager/types.rb', line 4879

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

#nameString

The name of the control set.

Returns:

  • (String)


4879
4880
4881
4882
4883
4884
4885
# File 'lib/aws-sdk-auditmanager/types.rb', line 4879

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