Class: Aws::ConfigService::Types::DescribeOrganizationConfigRulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeOrganizationConfigRulesRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of organization Config rules returned on each page.
-
#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. -
#organization_config_rule_names ⇒ Array<String>
The names of organization Config rules for which you want details.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of organization Config rules returned on each page. If you do no specify a number, Config uses the default. The default is 100.
3545 3546 3547 3548 3549 3550 3551 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3545 class DescribeOrganizationConfigRulesRequest < Struct.new( :organization_config_rule_names, :limit, :next_token) 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.
3545 3546 3547 3548 3549 3550 3551 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3545 class DescribeOrganizationConfigRulesRequest < Struct.new( :organization_config_rule_names, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#organization_config_rule_names ⇒ Array<String>
The names of organization Config rules for which you want details. If you do not specify any names, Config returns details for all your organization Config rules.
3545 3546 3547 3548 3549 3550 3551 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3545 class DescribeOrganizationConfigRulesRequest < Struct.new( :organization_config_rule_names, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |