extensible_source_servers
Creates, updates, deletes, gets or lists an extensible_source_servers resource.
Overview
| Name | extensible_source_servers |
| Type | Resource |
| Id | aws.drs.extensible_source_servers |
Fields
The following fields are returned by SELECT queries:
- list_extensible_source_servers
| Name | Datatype | Description |
|---|---|---|
arn | string | The ARN of the source server. (pattern: <code>arn:(?:[0-9a-zA-Z_-]+:){3}([0-9]{12,}):source-server/(s-[0-9a-zA-Z]{17})</code>) |
hostname | string | Hostname of staging source server. |
tags | object | A list of tags associated with the staging source server. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_extensible_source_servers | select | region | Returns a list of source servers on a staging account that are extensible, which means that: a. The source server is not already extended into this Account. b. The source server on the Account we’re reading from is not an extension of another source server. |
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
- list_extensible_source_servers
Returns a list of source servers on a staging account that are extensible, which means that: a. The source server is not already extended into this Account. b. The source server on the Account we’re reading from is not an extension of another source server.
SELECT
arn,
hostname,
tags
FROM aws.drs.extensible_source_servers
WHERE region = '{{ region }}' -- required
;