mpa_teams
Creates, updates, deletes, gets or lists a mpa_teams resource.
Overview
| Name | mpa_teams |
| Type | Resource |
| Id | aws.payment_cryptography.mpa_teams |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
associate_mpa_team | update | region, Action, MpaTeamArn | Associates a Multi-Party Approval (MPA) team with a protected operation. For more information, see Multi-Party Approval in the Amazon Web Services Payment Cryptography User Guide. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: DisassociateMpaTeam GetMpaTeamAssociation | |
disassociate_mpa_team | update | region, Action | Removes the association between a Multi-Party Approval (MPA) team and a protected operation. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: AssociateMpaTeam GetMpaTeamAssociation |
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) |
UPDATE examples
- associate_mpa_team
- disassociate_mpa_team
Associates a Multi-Party Approval (MPA) team with a protected operation. For more information, see Multi-Party Approval in the Amazon Web Services Payment Cryptography User Guide. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: DisassociateMpaTeam GetMpaTeamAssociation
UPDATE aws.payment_cryptography.mpa_teams
SET
Action = '{{ Action }}',
MpaTeamArn = '{{ MpaTeamArn }}',
RequesterComment = '{{ RequesterComment }}'
WHERE
region = '{{ region }}' --required
AND Action = '{{ Action }}' --required
AND MpaTeamArn = '{{ MpaTeamArn }}' --required
RETURNING
mpa_team_association;
Removes the association between a Multi-Party Approval (MPA) team and a protected operation. Cross-account use: This operation can't be used across different Amazon Web Services accounts. Related operations: AssociateMpaTeam GetMpaTeamAssociation
UPDATE aws.payment_cryptography.mpa_teams
SET
Action = '{{ Action }}',
RequesterComment = '{{ RequesterComment }}'
WHERE
region = '{{ region }}' --required
AND Action = '{{ Action }}' --required
RETURNING
mpa_team_association;