mpa_team_associations
Creates, updates, deletes, gets or lists a mpa_team_associations resource.
Overview
| Name | mpa_team_associations |
| Type | Resource |
| Id | aws.payment_cryptography.mpa_team_associations |
Fields
The following fields are returned by SELECT queries:
- get_mpa_team_association
| Name | Datatype | Description |
|---|---|---|
action | string | The protected operation associated with the MPA team. (IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE) |
association_state | string | The state of the MPA team association. (ACTIVE, UPDATE_PENDING, DELETE_PENDING) |
mpa_status | object | The MPA session status for the association, if applicable. |
mpa_team_arn | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_mpa_team_association | select | region | 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 |
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
- get_mpa_team_association
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
;