Class: Aws::ConfigService::Types::DescribeComplianceByResourceRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ConfigService::Types::DescribeComplianceByResourceRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-configservice/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
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 Amazon Web Services resource for which you want compliance information.
 - 
  
    
      #resource_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The types of Amazon Web Services resources for which you want compliance information (for example, ‘AWS::EC2::Instance`).
 
Instance Attribute Details
#compliance_types ⇒ Array<String>
Filters the results by compliance.
      2591 2592 2593 2594 2595 2596 2597 2598 2599  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 2591 class DescribeComplianceByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#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, Config uses the default.
      2591 2592 2593 2594 2595 2596 2597 2598 2599  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 2591 class DescribeComplianceByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :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.
      2591 2592 2593 2594 2595 2596 2597 2598 2599  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 2591 class DescribeComplianceByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_id ⇒ String
The ID of the Amazon Web Services 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`.
      2591 2592 2593 2594 2595 2596 2597 2598 2599  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 2591 class DescribeComplianceByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#resource_type ⇒ String
The types of Amazon Web Services resources for which you want compliance information (for example, ‘AWS::EC2::Instance`). For this action, you can specify that the resource type is an Amazon Web Services account by specifying `AWS::::Account`.
      2591 2592 2593 2594 2595 2596 2597 2598 2599  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 2591 class DescribeComplianceByResourceRequest < Struct.new( :resource_type, :resource_id, :compliance_types, :limit, :next_token) SENSITIVE = [] include Aws::Structure end  |