Class: Aws::ConfigService::Types::DescribeConfigRuleEvaluationStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeConfigRuleEvaluationStatusRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
When making an API call, you may pass DescribeConfigRuleEvaluationStatusRequest data as a hash:
{
config_rule_names: ["ConfigRuleName"],
next_token: "String",
limit: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#config_rule_names ⇒ Array<String>
The name of the Config managed 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 Config managed rules for which you want status information. If you do not specify any names, Config returns status information for all Config managed rules that you use.
2817 2818 2819 2820 2821 2822 2823 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2817 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) SENSITIVE = [] 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 150 rules.
For information about requesting a rule limit increase, see Config Limits in the Amazon Web Services General Reference Guide.
2817 2818 2819 2820 2821 2822 2823 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2817 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) 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.
2817 2818 2819 2820 2821 2822 2823 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 2817 class DescribeConfigRuleEvaluationStatusRequest < Struct.new( :config_rule_names, :next_token, :limit) SENSITIVE = [] include Aws::Structure end |