Class: Aws::ConfigService::Types::DescribeRetentionConfigurationsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ConfigService::Types::DescribeRetentionConfigurationsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-configservice/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #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.
 - 
  
    
      #retention_configuration_names  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of names of retention configurations for which you want details.
 
Instance Attribute Details
#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  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 3452 class DescribeRetentionConfigurationsRequest < Struct.new( :retention_configuration_names, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#retention_configuration_names ⇒ Array<String>
A list of names of retention configurations for which you want details. If you do not specify a name, Config returns details for all the retention configurations for that account.
<note markdown=“1”> Currently, Config supports only one retention configuration per region in your account.
</note>
  
      3452 3453 3454 3455 3456 3457  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 3452 class DescribeRetentionConfigurationsRequest < Struct.new( :retention_configuration_names, :next_token) SENSITIVE = [] include Aws::Structure end  |