extension_pack_associations
Creates, updates, deletes, gets or lists an extension_pack_associations resource.
Overview
| Name | extension_pack_associations |
| Type | Resource |
| Id | aws.dms.extension_pack_associations |
Fields
The following fields are returned by SELECT queries:
- describe_extension_pack_associations
| Name | Datatype | Description |
|---|---|---|
marker | string | Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords. If Marker is returned by a previous response, there are more results available. The value of Marker is a unique pagination token for each page. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged. |
requests | array | A paginated list of extension pack installation requests. DMS never populates the ExportSqlDetails field for this operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_extension_pack_associations | select | region | Returns a paginated list of extension pack installation requests for a migration project, initiated by StartExtensionPackAssociation. Required permissions: dms:ListExtensionPacks. For more information, see Actions, resources, and condition keys for Database Migration Service. |
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_extension_pack_associations
Returns a paginated list of extension pack installation requests for a migration project, initiated by StartExtensionPackAssociation. Required permissions: dms:ListExtensionPacks. For more information, see Actions, resources, and condition keys for Database Migration Service.
SELECT
marker,
requests
FROM aws.dms.extension_pack_associations
WHERE region = '{{ region }}' -- required
;