Skip to main content

mpa_team_associations

Creates, updates, deletes, gets or lists a mpa_team_associations resource.

Overview

Namempa_team_associations
TypeResource
Idaws.payment_cryptography.mpa_team_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actionstringThe protected operation associated with the MPA team. (IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE)
association_statestringThe state of the MPA team association. (ACTIVE, UPDATE_PENDING, DELETE_PENDING)
mpa_statusobjectThe MPA session status for the association, if applicable.
mpa_team_arnstringThe ARN of the MPA team. (pattern: <code>arn:aws(-[^:]+)?:mpa:[a-z0-9-]{1,20}:[0-9]{12}:approval-team/[a-zA-Z0-9._-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_mpa_team_associationselectregionReturns the Multi-Party Approval (MPA) team association for a protected operation. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: AssociateMpaTeam DisassociateMpaTeam

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 the Multi-Party Approval (MPA) team association for a protected operation. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: AssociateMpaTeam DisassociateMpaTeam

SELECT
action,
association_state,
mpa_status,
mpa_team_arn
FROM aws.payment_cryptography.mpa_team_associations
WHERE region = '{{ region }}' -- required
;