Class: Aws::ConfigService::Types::ListConformancePackComplianceScoresRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::ListConformancePackComplianceScoresRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Types::ConformancePackComplianceScoresFilters
Filters the results based on the
ConformancePackComplianceScoresFilters
. -
#limit ⇒ Integer
The maximum number of conformance pack compliance scores returned on each page.
-
#next_token ⇒ String
The
nextToken
string in a prior request that you can use to get the paginated response for the next set of conformance pack compliance scores. -
#sort_by ⇒ String
Sorts your conformance pack compliance scores in either ascending or descending order, depending on
SortOrder
. -
#sort_order ⇒ String
Determines the order in which conformance pack compliance scores are sorted.
Instance Attribute Details
#filters ⇒ Types::ConformancePackComplianceScoresFilters
Filters the results based on the
ConformancePackComplianceScoresFilters
.
4895 4896 4897 4898 4899 4900 4901 4902 4903 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4895 class ListConformancePackComplianceScoresRequest < Struct.new( :filters, :sort_order, :sort_by, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of conformance pack compliance scores returned on each page.
4895 4896 4897 4898 4899 4900 4901 4902 4903 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4895 class ListConformancePackComplianceScoresRequest < Struct.new( :filters, :sort_order, :sort_by, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
string in a prior request that you can use to get
the paginated response for the next set of conformance pack
compliance scores.
4895 4896 4897 4898 4899 4900 4901 4902 4903 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4895 class ListConformancePackComplianceScoresRequest < Struct.new( :filters, :sort_order, :sort_by, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#sort_by ⇒ String
Sorts your conformance pack compliance scores in either ascending or
descending order, depending on SortOrder
.
By default, conformance pack compliance scores are sorted in
alphabetical order by name of the conformance pack. Enter SCORE
,
to sort conformance pack compliance scores by the numerical value of
the compliance score.
4895 4896 4897 4898 4899 4900 4901 4902 4903 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4895 class ListConformancePackComplianceScoresRequest < Struct.new( :filters, :sort_order, :sort_by, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
Determines the order in which conformance pack compliance scores are sorted. Either in ascending or descending order.
By default, conformance pack compliance scores are sorted in
alphabetical order by name of the conformance pack. Conformance pack
compliance scores are sorted in reverse alphabetical order if you
enter DESCENDING
.
You can sort conformance pack compliance scores by the numerical
value of the compliance score by entering SCORE
in the SortBy
action. When compliance scores are sorted by SCORE
, conformance
packs with a compliance score of INSUFFICIENT_DATA
will be last
when sorting by ascending order and first when sorting by descending
order.
4895 4896 4897 4898 4899 4900 4901 4902 4903 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4895 class ListConformancePackComplianceScoresRequest < Struct.new( :filters, :sort_order, :sort_by, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |