Class: Aws::ConfigService::Types::GetComplianceDetailsByConfigRuleRequest

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 GetComplianceDetailsByConfigRuleRequest data as a hash:

{
  config_rule_name: "StringWithCharLimit64", # required
  compliance_types: ["COMPLIANT"], # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
  limit: 1,
  next_token: "NextToken",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compliance_typesArray<String>

Filters the results by compliance.

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

Returns:

  • (Array<String>)


4412
4413
4414
4415
4416
4417
4418
4419
# File 'lib/aws-sdk-configservice/types.rb', line 4412

class GetComplianceDetailsByConfigRuleRequest < Struct.new(
  :config_rule_name,
  :compliance_types,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#config_rule_nameString

The name of the AWS Config rule for which you want compliance information.

Returns:

  • (String)


4412
4413
4414
4415
4416
4417
4418
4419
# File 'lib/aws-sdk-configservice/types.rb', line 4412

class GetComplianceDetailsByConfigRuleRequest < Struct.new(
  :config_rule_name,
  :compliance_types,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, AWS Config uses the default.

Returns:

  • (Integer)


4412
4413
4414
4415
4416
4417
4418
4419
# File 'lib/aws-sdk-configservice/types.rb', line 4412

class GetComplianceDetailsByConfigRuleRequest < Struct.new(
  :config_rule_name,
  :compliance_types,
  :limit,
  :next_token)
  SENSITIVE = []
  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)


4412
4413
4414
4415
4416
4417
4418
4419
# File 'lib/aws-sdk-configservice/types.rb', line 4412

class GetComplianceDetailsByConfigRuleRequest < Struct.new(
  :config_rule_name,
  :compliance_types,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end