Skip to main content

mpa_teams

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

Overview

Namempa_teams
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
associate_mpa_teamupdateregion, Action, MpaTeamArnAssociates 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_teamupdateregion, ActionRemoves 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.

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

UPDATE examples

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;