Class: Aws::RDS::Types::EngineDefaults
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::EngineDefaults
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Contains the result of a successful invocation of the ‘DescribeEngineDefaultParameters` action.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #db_parameter_group_family  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the name of the DB parameter group family that the engine default parameters apply to. 
- 
  
    
      #marker  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An optional pagination token provided by a previous EngineDefaults request. 
- 
  
    
      #parameters  ⇒ Array<Types::Parameter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains a list of engine default parameters. 
Instance Attribute Details
#db_parameter_group_family ⇒ String
Specifies the name of the DB parameter group family that the engine default parameters apply to.
| 15318 15319 15320 15321 15322 15323 15324 | # File 'lib/aws-sdk-rds/types.rb', line 15318 class EngineDefaults < Struct.new( :db_parameter_group_family, :marker, :parameters) SENSITIVE = [] include Aws::Structure end | 
#marker ⇒ String
An optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by ‘MaxRecords` .
| 15318 15319 15320 15321 15322 15323 15324 | # File 'lib/aws-sdk-rds/types.rb', line 15318 class EngineDefaults < Struct.new( :db_parameter_group_family, :marker, :parameters) SENSITIVE = [] include Aws::Structure end | 
#parameters ⇒ Array<Types::Parameter>
Contains a list of engine default parameters.
| 15318 15319 15320 15321 15322 15323 15324 | # File 'lib/aws-sdk-rds/types.rb', line 15318 class EngineDefaults < Struct.new( :db_parameter_group_family, :marker, :parameters) SENSITIVE = [] include Aws::Structure end |