Skip to main content

orderable_db_instance_options

Creates, updates, deletes, gets or lists an orderable_db_instance_options resource.

Overview

Nameorderable_db_instance_options
TypeResource
Idaws.docdb.orderable_db_instance_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
availability_zonesstringA list of Availability Zones for an instance.
db_instance_classstringThe instance class for an instance.
enginestringThe engine type of an instance.
engine_versionstringThe engine version of an instance.
license_modelstringThe license model for an instance.
storage_typestringThe storage type to associate with the DB cluster
vpcbooleanIndicates whether an instance is in a virtual private cloud (VPC).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_orderable_db_instance_optionsselectregionEngine, EngineVersion, DBInstanceClass, LicenseModel, Vpc, Filters, MaxRecords, MarkerReturns a list of orderable instance options for the specified engine.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
DBInstanceClassstringThe instance class filter value. Specify this parameter to show only the available offerings that match the specified instance class.
EnginestringThe name of the engine to retrieve instance options for.
EngineVersionstringThe engine version filter value. Specify this parameter to show only the available offerings that match the specified engine version.
FiltersarrayThis parameter is not currently supported.
LicenseModelstringThe license model filter value. Specify this parameter to show only the available offerings that match the specified license model.
MarkerstringAn optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
MaxRecordsintegerThe maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token (marker) is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
VpcbooleanThe virtual private cloud (VPC) filter value. Specify this parameter to show only the available VPC or non-VPC offerings.

SELECT examples

Returns a list of orderable instance options for the specified engine.

SELECT
availability_zones,
db_instance_class,
engine,
engine_version,
license_model,
storage_type,
vpc
FROM aws.docdb.orderable_db_instance_options
WHERE region = '{{ region }}' -- required
AND Engine = '{{ Engine }}'
AND EngineVersion = '{{ EngineVersion }}'
AND DBInstanceClass = '{{ DBInstanceClass }}'
AND LicenseModel = '{{ LicenseModel }}'
AND Vpc = '{{ Vpc }}'
AND Filters = '{{ Filters }}'
AND MaxRecords = '{{ MaxRecords }}'
AND Marker = '{{ Marker }}'
;