Class: Aws::ConfigService::Types::DescribeOrganizationConformancePacksRequest

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

{
  organization_conformance_pack_names: ["OrganizationConformancePackName"],
  limit: 1,
  next_token: "String",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

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

Returns:

  • (Integer)


3426
3427
3428
3429
3430
3431
3432
# File 'lib/aws-sdk-configservice/types.rb', line 3426

class DescribeOrganizationConformancePacksRequest < Struct.new(
  :organization_conformance_pack_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)


3426
3427
3428
3429
3430
3431
3432
# File 'lib/aws-sdk-configservice/types.rb', line 3426

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

#organization_conformance_pack_namesArray<String>

The name that you assign to an organization conformance pack.

Returns:

  • (Array<String>)


3426
3427
3428
3429
3430
3431
3432
# File 'lib/aws-sdk-configservice/types.rb', line 3426

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