Skip to main content

extension_pack_associations

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

Overview

Nameextension_pack_associations
TypeResource
Idaws.dms.extension_pack_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
markerstringSpecifies 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.
requestsarrayA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_extension_pack_associationsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;