Class: Aws::ConfigService::Types::DescribeComplianceByConfigRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeComplianceByConfigRuleRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeComplianceByConfigRuleRequest data as a hash:
{
config_rule_names: ["ConfigRuleName"],
compliance_types: ["COMPLIANT"], # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compliance_types ⇒ Array<String>
Filters the results by compliance.
-
#config_rule_names ⇒ Array<String>
Specify one or more 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
and NON_COMPLIANT
.
2681 2682 2683 2684 2685 2686 2687 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2681 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) SENSITIVE = [] include Aws::Structure end |
#config_rule_names ⇒ Array<String>
Specify one or more Config rule names to filter the results by rule.
2681 2682 2683 2684 2685 2686 2687 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2681 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) SENSITIVE = [] 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.
2681 2682 2683 2684 2685 2686 2687 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2681 class DescribeComplianceByConfigRuleRequest < Struct.new( :config_rule_names, :compliance_types, :next_token) SENSITIVE = [] include Aws::Structure end |