Class: Aws::ConfigService::Types::GetComplianceDetailsByResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::GetComplianceDetailsByResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
When making an API call, you may pass GetComplianceDetailsByResourceRequest data as a hash:
{
resource_type: "StringWithCharLimit256", # required
resource_id: "BaseResourceId", # required
compliance_types: ["COMPLIANT"], # accepts COMPLIANT, NON_COMPLIANT, NOT_APPLICABLE, INSUFFICIENT_DATA
next_token: "String",
}
Instance Attribute Summary collapse
-
#compliance_types ⇒ Array<String>
Filters the results by compliance.
-
#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 type of the AWS resource for which you want compliance information.
Instance Attribute Details
#compliance_types ⇒ Array<String>
Filters the results by compliance.
The allowed values are ‘COMPLIANT`, `NON_COMPLIANT`, and `NOT_APPLICABLE`.
1573 1574 1575 1576 1577 1578 1579 |
# File 'lib/aws-sdk-configservice/types.rb', line 1573 class GetComplianceDetailsByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :next_token) 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.
1573 1574 1575 1576 1577 1578 1579 |
# File 'lib/aws-sdk-configservice/types.rb', line 1573 class GetComplianceDetailsByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :next_token) include Aws::Structure end |
#resource_id ⇒ String
The ID of the AWS resource for which you want compliance information.
1573 1574 1575 1576 1577 1578 1579 |
# File 'lib/aws-sdk-configservice/types.rb', line 1573 class GetComplianceDetailsByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :next_token) include Aws::Structure end |
#resource_type ⇒ String
The type of the AWS resource for which you want compliance information.
1573 1574 1575 1576 1577 1578 1579 |
# File 'lib/aws-sdk-configservice/types.rb', line 1573 class GetComplianceDetailsByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :next_token) include Aws::Structure end |