Class: Aws::AuditManager::Types::ListControlsRequest

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

{
  control_type: "Standard", # required, accepts Standard, Custom
  next_token: "Token",
  max_results: 1,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#control_typeString

The type of control, such as a standard control or a custom control.

Returns:

  • (String)


3978
3979
3980
3981
3982
3983
3984
# File 'lib/aws-sdk-auditmanager/types.rb', line 3978

class ListControlsRequest < Struct.new(
  :control_type,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

Represents the maximum number of results on a page or for an API request call.

Returns:

  • (Integer)


3978
3979
3980
3981
3982
3983
3984
# File 'lib/aws-sdk-auditmanager/types.rb', line 3978

class ListControlsRequest < Struct.new(
  :control_type,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The pagination token that’s used to fetch the next set of results.

Returns:

  • (String)


3978
3979
3980
3981
3982
3983
3984
# File 'lib/aws-sdk-auditmanager/types.rb', line 3978

class ListControlsRequest < Struct.new(
  :control_type,
  :next_token,
  :max_results)
  SENSITIVE = []
  include Aws::Structure
end