Class: Aws::RDS::Types::EngineDefaults

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Contains the result of a successful invocation of the DescribeEngineDefaultParameters action.

Instance Attribute Summary collapse

Instance Attribute Details

#db_parameter_group_familyString

Specifies the name of the DB parameter group family that the engine default parameters apply to.

Returns:

  • (String)


8986
8987
8988
8989
8990
8991
# File 'lib/aws-sdk-rds/types.rb', line 8986

class EngineDefaults < Struct.new(
  :db_parameter_group_family,
  :marker,
  :parameters)
  include Aws::Structure
end

#markerString

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` .

Returns:

  • (String)


8986
8987
8988
8989
8990
8991
# File 'lib/aws-sdk-rds/types.rb', line 8986

class EngineDefaults < Struct.new(
  :db_parameter_group_family,
  :marker,
  :parameters)
  include Aws::Structure
end

#parametersArray<Types::Parameter>

Contains a list of engine default parameters.

Returns:



8986
8987
8988
8989
8990
8991
# File 'lib/aws-sdk-rds/types.rb', line 8986

class EngineDefaults < Struct.new(
  :db_parameter_group_family,
  :marker,
  :parameters)
  include Aws::Structure
end