orderable_replication_instances
Creates, updates, deletes, gets or lists an orderable_replication_instances resource.
Overview
| Name | orderable_replication_instances |
| Type | Resource |
| Id | aws.dms.orderable_replication_instances |
Fields
The following fields are returned by SELECT queries:
- describe_orderable_replication_instances
| Name | Datatype | Description |
|---|---|---|
availability_zones | array | List of Availability Zones for this replication instance. |
default_allocated_storage | integer | The default amount of storage (in gigabytes) that is allocated for the replication instance. |
engine_version | string | The version of the replication engine. |
included_allocated_storage | integer | The amount of storage (in gigabytes) that is allocated for the replication instance. |
max_allocated_storage | integer | The minimum amount of storage (in gigabytes) that can be allocated for the replication instance. |
min_allocated_storage | integer | The minimum amount of storage (in gigabytes) that can be allocated for the replication instance. |
release_status | string | The 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_class | string | The 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_type | string | The type of storage used by the replication instance. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_orderable_replication_instances | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_orderable_replication_instances
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
;