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.neptune.orderable_db_instance_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
availability_zonesstringA list of Availability Zones for a DB instance.
db_instance_classstringThe DB instance class for a DB instance.
enginestringThe engine type of a DB instance.
engine_versionstringThe engine version of a DB instance.
license_modelstringThe license model for a DB instance.
max_iops_per_db_instanceintegerMaximum total provisioned IOPS for a DB instance.
max_iops_per_gibnumberMaximum provisioned IOPS per GiB for a DB instance.
max_storage_sizeintegerMaximum storage size for a DB instance.
min_iops_per_db_instanceintegerMinimum total provisioned IOPS for a DB instance.
min_iops_per_gibnumberMinimum provisioned IOPS per GiB for a DB instance.
min_storage_sizeintegerMinimum storage size for a DB instance.
multi_az_capablebooleanIndicates whether a DB instance is Multi-AZ capable.
read_replica_capablebooleanIndicates whether a DB instance can have a Read Replica.
storage_typestringNot applicable. In Neptune the storage type is managed at the DB Cluster level.
supported_network_typesstringThe network types supported by the orderable DB instance option.
supports_enhanced_monitoringbooleanIndicates whether a DB instance supports Enhanced Monitoring at intervals from 1 to 60 seconds.
supports_global_databasesbooleanA value that indicates whether you can use Neptune global databases with a specific combination of other DB engine attributes.
supports_iam_database_authenticationbooleanIndicates whether a DB instance supports IAM database authentication.
supports_iopsbooleanIndicates whether a DB instance supports provisioned IOPS.
supports_performance_insightsboolean(Not supported by Neptune)
supports_storage_encryptionbooleanIndicates whether a DB instance supports encrypted storage.
vpcbooleanIndicates whether a DB instance is in a 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 DB 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 DB instance class filter value. Specify this parameter to show only the available offerings matching the specified DB instance class.
EnginestringThe name of the engine to retrieve DB instance options for.
EngineVersionstringThe engine version filter value. Specify this parameter to show only the available offerings matching the specified engine version.
FiltersarrayThis parameter is not currently supported.
LicenseModelstringThe license model filter value. Specify this parameter to show only the available offerings matching the specified license model.
MarkerstringAn optional pagination token provided by a previous DescribeOrderableDBInstanceOptions 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 called a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: Minimum 20, maximum 100.
VpcbooleanThe VPC filter value. Specify this parameter to show only the available VPC or non-VPC offerings.

SELECT examples

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

SELECT
availability_zones,
db_instance_class,
engine,
engine_version,
license_model,
max_iops_per_db_instance,
max_iops_per_gib,
max_storage_size,
min_iops_per_db_instance,
min_iops_per_gib,
min_storage_size,
multi_az_capable,
read_replica_capable,
storage_type,
supported_network_types,
supports_enhanced_monitoring,
supports_global_databases,
supports_iam_database_authentication,
supports_iops,
supports_performance_insights,
supports_storage_encryption,
vpc
FROM aws.neptune.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 }}'
;