Class: Aws::ConfigService::Types::DescribeOrganizationConfigRulesRequest

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

{
  organization_config_rule_names: ["StringWithCharLimit64"],
  limit: 1,
  next_token: "String",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of organization config rules returned on each page. If you do no specify a number, AWS Config uses the default. The default is 100.

Returns:

  • (Integer)


3320
3321
3322
3323
3324
3325
3326
# File 'lib/aws-sdk-configservice/types.rb', line 3320

class DescribeOrganizationConfigRulesRequest < Struct.new(
  :organization_config_rule_names,
  :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)


3320
3321
3322
3323
3324
3325
3326
# File 'lib/aws-sdk-configservice/types.rb', line 3320

class DescribeOrganizationConfigRulesRequest < Struct.new(
  :organization_config_rule_names,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#organization_config_rule_namesArray<String>

The names of organization config rules for which you want details. If you do not specify any names, AWS Config returns details for all your organization config rules.

Returns:

  • (Array<String>)


3320
3321
3322
3323
3324
3325
3326
# File 'lib/aws-sdk-configservice/types.rb', line 3320

class DescribeOrganizationConfigRulesRequest < Struct.new(
  :organization_config_rule_names,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end