Class: Aws::ConfigService::Types::DescribeConfigRulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeConfigRulesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Note:
When making an API call, you may pass DescribeConfigRulesRequest data as a hash:
{
config_rule_names: ["StringWithCharLimit64"],
next_token: "String",
}
Instance Attribute Summary collapse
-
#config_rule_names ⇒ Array<String>
The names of the AWS Config rules for which you want details.
-
#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 names of the AWS Config rules for which you want details. If you do not specify any names, AWS Config returns details for all your rules.
1160 1161 1162 1163 1164 |
# File 'lib/aws-sdk-configservice/types.rb', line 1160 class DescribeConfigRulesRequest < Struct.new( :config_rule_names, :next_token) 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.
1160 1161 1162 1163 1164 |
# File 'lib/aws-sdk-configservice/types.rb', line 1160 class DescribeConfigRulesRequest < Struct.new( :config_rule_names, :next_token) include Aws::Structure end |