Class: Aws::SSM::Types::ListComplianceSummariesRequest

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

Overview

Note:

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

{
  filters: [
    {
      key: "ComplianceStringFilterKey",
      values: ["ComplianceFilterValue"],
      type: "EQUAL", # accepts EQUAL, NOT_EQUAL, BEGIN_WITH, LESS_THAN, GREATER_THAN
    },
  ],
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::ComplianceStringFilter>

One or more compliance or inventory filters. Use a filter to return a more specific list of results.

Returns:



8377
8378
8379
8380
8381
8382
# File 'lib/aws-sdk-ssm/types.rb', line 8377

class ListComplianceSummariesRequest < Struct.new(
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of items to return for this call. Currently, you can specify null or 50. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Returns:

  • (Integer)


8377
8378
8379
8380
8381
8382
# File 'lib/aws-sdk-ssm/types.rb', line 8377

class ListComplianceSummariesRequest < Struct.new(
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

A token to start the list. Use this token to get the next set of results.

Returns:

  • (String)


8377
8378
8379
8380
8381
8382
# File 'lib/aws-sdk-ssm/types.rb', line 8377

class ListComplianceSummariesRequest < Struct.new(
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end