Class: Aws::ConfigService::Types::DescribeComplianceByConfigRuleRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#compliance_typesArray<String>

Filters the results by compliance.

The allowed values are ‘COMPLIANT`, `NON_COMPLIANT`, and `INSUFFICIENT_DATA`.

Returns:

  • (Array<String>)


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_namesArray<String>

Specify one or more AWS Config rule names to filter the results by rule.

Returns:

  • (Array<String>)


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_tokenString

The ‘NextToken` string returned on a previous page that you use to get the next page of results in a paginated response.

Returns:

  • (String)


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