Class: Aws::ConfigService::Types::DescribeOrganizationConformancePackStatusesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeOrganizationConformancePackStatusesRequest
- Defined in:
- gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb
Overview
When making an API call, you may pass DescribeOrganizationConformancePackStatusesRequest data as a hash:
{
organization_conformance_pack_names: ["OrganizationConformancePackName"],
limit: 1,
next_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of OrganizationConformancePackStatuses 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_conformance_pack_names ⇒ Array<String>
The names of organization conformance packs for which you want status details.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of OrganizationConformancePackStatuses returned on each page. If you do no specify a number, Config uses the default. The default is 100.
3452 3453 3454 3455 3456 3457 3458 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3452 class DescribeOrganizationConformancePackStatusesRequest < Struct.new( :organization_conformance_pack_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.
3452 3453 3454 3455 3456 3457 3458 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3452 class DescribeOrganizationConformancePackStatusesRequest < Struct.new( :organization_conformance_pack_names, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |
#organization_conformance_pack_names ⇒ Array<String>
The names of organization conformance packs for which you want status details. If you do not specify any names, Config returns details for all your organization conformance packs.
3452 3453 3454 3455 3456 3457 3458 |
# File 'gems/aws-sdk-configservice/lib/aws-sdk-configservice/types.rb', line 3452 class DescribeOrganizationConformancePackStatusesRequest < Struct.new( :organization_conformance_pack_names, :limit, :next_token) SENSITIVE = [] include Aws::Structure end |