Class: Aws::AuditManager::Types::ListAssessmentFrameworksRequest

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

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#framework_typeString

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

Returns:

  • (String)


3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-auditmanager/types.rb', line 3692

class ListAssessmentFrameworksRequest < Struct.new(
  :framework_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)


3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-auditmanager/types.rb', line 3692

class ListAssessmentFrameworksRequest < Struct.new(
  :framework_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)


3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-auditmanager/types.rb', line 3692

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