Class: Aws::ConfigService::Types::DescribeComplianceByConfigRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeComplianceByConfigRuleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeComplianceByConfigRuleRequest data as a hash:
{
config_rule_names: ["StringWithCharLimit64"],
compliance_types: ["COMPLIANT"], # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
next_token: "String",
}
Instance Attribute Summary collapse
-
#compliance_types ⇒ Array<String>
Filters the results by compliance.
-
#config_rule_names ⇒ Array<String>
Specify one or more AWS Config rule names to filter the results by rule.
-
#next_token ⇒ String
The ‘NextToken` string returned on a previous page that you use to get the next page of results in a paginated response.
Instance Attribute Details
#compliance_types ⇒ Array<String>
Filters the results by compliance.
The allowed values are ‘COMPLIANT`, `NON_COMPLIANT`, and `INSUFFICIENT_DATA`.
983 984 985 986 987 988 |
# File 'lib/aws-sdk-configservice/types.rb', line 983 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) include Aws::Structure end |
#config_rule_names ⇒ Array<String>
Specify one or more AWS Config rule names to filter the results by rule.
983 984 985 986 987 988 |
# File 'lib/aws-sdk-configservice/types.rb', line 983 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) include Aws::Structure end |
#next_token ⇒ String
The ‘NextToken` string returned on a previous page that you use to get the next page of results in a paginated response.
983 984 985 986 987 988 |
# File 'lib/aws-sdk-configservice/types.rb', line 983 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) include Aws::Structure end |