You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ConfigService::Types::DescribeComplianceByResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::DescribeComplianceByResourceRequest
- Defined in:
- (unknown)
Overview
When passing DescribeComplianceByResourceRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
resource_type: "StringWithCharLimit256",
resource_id: "BaseResourceId",
compliance_types: ["COMPLIANT"], # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
limit: 1,
next_token: "NextToken",
}
Instance Attribute Summary collapse
-
#compliance_types ⇒ Array<String>
Filters the results by compliance.
-
#limit ⇒ Integer
The maximum number of evaluation results 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. -
#resource_id ⇒ String
The ID of the AWS resource for which you want compliance information.
-
#resource_type ⇒ String
The types of AWS resources for which you want compliance information (for example,
AWS::EC2::Instance
).
Instance Attribute Details
#compliance_types ⇒ Array<String>
Filters the results by compliance.
The allowed values are COMPLIANT
, NON_COMPLIANT
, and
INSUFFICIENT_DATA
.
#limit ⇒ Integer
The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, AWS Config uses the default.
#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.
#resource_id ⇒ String
The ID of the AWS resource for which you want compliance information.
You can specify only one resource ID. If you specify a resource ID, you
must also specify a type for ResourceType
.
#resource_type ⇒ String
The types of AWS resources for which you want compliance information
(for example, AWS::EC2::Instance
). For this action, you can specify
that the resource type is an AWS account by specifying AWS::::Account
.