Class: Aws::ConfigService::Types::GetConformancePackComplianceDetailsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::GetConformancePackComplianceDetailsRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass GetConformancePackComplianceDetailsRequest data as a hash:
{
conformance_pack_name: "ConformancePackName", # required
filters: {
config_rule_names: ["StringWithCharLimit64"],
compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, INSUFFICIENT_DATA
resource_type: "StringWithCharLimit256",
resource_ids: ["StringWithCharLimit256"],
},
limit: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conformance_pack_name ⇒ String
Name of the conformance pack.
-
#filters ⇒ Types::ConformancePackEvaluationFilters
A
ConformancePackEvaluationFilters
object. -
#limit ⇒ Integer
The maximum number of evaluation results returned on each page.
-
#next_token ⇒ String
The
nextToken
string returned in a previous request that you use to request the next page of results in a paginated response.
Instance Attribute Details
#conformance_pack_name ⇒ String
Name of the conformance pack.
4673 4674 4675 4676 4677 4678 4679 4680 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4673 class GetConformancePackComplianceDetailsRequest < Struct.new( :conformance_pack_name, :filters, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#filters ⇒ Types::ConformancePackEvaluationFilters
A ConformancePackEvaluationFilters
object.
4673 4674 4675 4676 4677 4678 4679 4680 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4673 class GetConformancePackComplianceDetailsRequest < Struct.new( :conformance_pack_name, :filters, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The maximum number of evaluation results returned on each page. If you do no specify a number, Config uses the default. The default is 100.
4673 4674 4675 4676 4677 4678 4679 4680 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4673 class GetConformancePackComplianceDetailsRequest < Struct.new( :conformance_pack_name, :filters, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
string returned in a previous request that you use
to request the next page of results in a paginated response.
4673 4674 4675 4676 4677 4678 4679 4680 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 4673 class GetConformancePackComplianceDetailsRequest < Struct.new( :conformance_pack_name, :filters, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |