Skip to main content

orderable_replication_instances

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

Overview

Nameorderable_replication_instances
TypeResource
Idaws.dms.orderable_replication_instances

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
availability_zonesarrayList of Availability Zones for this replication instance.
default_allocated_storageintegerThe default amount of storage (in gigabytes) that is allocated for the replication instance.
engine_versionstringThe version of the replication engine.
included_allocated_storageintegerThe amount of storage (in gigabytes) that is allocated for the replication instance.
max_allocated_storageintegerThe minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
min_allocated_storageintegerThe minimum amount of storage (in gigabytes) that can be allocated for the replication instance.
release_statusstringThe value returned when the specified EngineVersion of the replication instance is in Beta or test mode. This indicates some features might not work as expected. DMS supports the ReleaseStatus parameter in versions 3.1.4 and later. (beta, prod)
replication_instance_classstringThe compute and memory capacity of the replication instance as defined for the specified replication instance class. For example to specify the instance class dms.c4.large, set this parameter to "dms.c4.large". For more information on the settings and capacities for the available replication instance classes, see Selecting the right DMS replication instance for your migration.
storage_typestringThe type of storage used by the replication instance.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_orderable_replication_instancesselectregionReturns information about the replication instance types that can be created in the specified region.

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)

SELECT examples

Returns information about the replication instance types that can be created in the specified region.

SELECT
availability_zones,
default_allocated_storage,
engine_version,
included_allocated_storage,
max_allocated_storage,
min_allocated_storage,
release_status,
replication_instance_class,
storage_type
FROM aws.dms.orderable_replication_instances
WHERE region = '{{ region }}' -- required
;