Class: Aws::ConfigService::Types::DescribeConfigRuleEvaluationStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeConfigRuleEvaluationStatusRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
When making an API call, you may pass DescribeConfigRuleEvaluationStatusRequest data as a hash:
{
config_rule_names: ["StringWithCharLimit64"],
next_token: "String",
limit: 1,
}
Instance Attribute Summary collapse
-
#config_rule_names ⇒ Array<String>
The name of the AWS managed Config rules for which you want status information.
-
#limit ⇒ Integer
The number of rule evaluation results that you want returned.
-
#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
#config_rule_names ⇒ Array<String>
The name of the AWS managed Config rules for which you want status information. If you do not specify any names, AWS Config returns status information for all AWS managed Config rules that you use.
1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-configservice/types.rb', line 1115 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) include Aws::Structure end |
#limit ⇒ Integer
The number of rule evaluation results that you want returned.
This parameter is required if the rule limit for your account is more than the default of 50 rules.
For more information about requesting a rule limit increase, see
- AWS Config Limits][1
-
in the *AWS General Reference Guide*.
[1]: docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_config
1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-configservice/types.rb', line 1115 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) 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.
1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-configservice/types.rb', line 1115 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) include Aws::Structure end |