Class: Aws::ConfigService::Types::DescribeConformancePackComplianceRequest

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

{
  conformance_pack_name: "ConformancePackName", # required
  filters: {
    config_rule_names: ["StringWithCharLimit64"],
    compliance_type: "COMPLIANT", # accepts COMPLIANT, NON_COMPLIANT, INSUFFICIENT_DATA
  },
  limit: 1,
  next_token: "NextToken",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conformance_pack_nameString

Name of the conformance pack.

Returns:

  • (String)


3032
3033
3034
3035
3036
3037
3038
3039
# File 'lib/aws-sdk-configservice/types.rb', line 3032

class DescribeConformancePackComplianceRequest < Struct.new(
  :conformance_pack_name,
  :filters,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#filtersTypes::ConformancePackComplianceFilters

A ‘ConformancePackComplianceFilters` object.



3032
3033
3034
3035
3036
3037
3038
3039
# File 'lib/aws-sdk-configservice/types.rb', line 3032

class DescribeConformancePackComplianceRequest < Struct.new(
  :conformance_pack_name,
  :filters,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of AWS Config rules within a conformance pack are returned on each page.

Returns:

  • (Integer)


3032
3033
3034
3035
3036
3037
3038
3039
# File 'lib/aws-sdk-configservice/types.rb', line 3032

class DescribeConformancePackComplianceRequest < Struct.new(
  :conformance_pack_name,
  :filters,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

The ‘nextToken` string returned in a previous request that you use to request the next page of results in a paginated response.

Returns:

  • (String)


3032
3033
3034
3035
3036
3037
3038
3039
# File 'lib/aws-sdk-configservice/types.rb', line 3032

class DescribeConformancePackComplianceRequest < Struct.new(
  :conformance_pack_name,
  :filters,
  :limit,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end