Skip to content

Get Mpa Team Association

paymentcryptographycontrolplane_get_mpa_team_association R Documentation

Returns the Multi-Party Approval (MPA) team association for a protected operation

Description

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:

  • associate_mpa_team

  • disassociate_mpa_team

Usage

paymentcryptographycontrolplane_get_mpa_team_association(Action)

Arguments

Action

[required] The protected operation whose MPA team association you want to retrieve. Currently, the only supported value is IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE.

Value

A list with the following syntax:

list(
  MpaTeamAssociation = list(
    Action = "IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE",
    MpaTeamArn = "string",
    AssociationState = "ACTIVE"|"UPDATE_PENDING"|"DELETE_PENDING",
    MpaStatus = list(
      MpaSessionArn = "string",
      Status = "PENDING"|"APPROVED"|"FAILED"|"CANCELLED",
      InitiationDate = as.POSIXct(
        "2015-01-01"
      ),
      StatusMessage = "string"
    )
  )
)

Request syntax

svc$get_mpa_team_association(
  Action = "IMPORT_ROOT_PUBLIC_KEY_CERTIFICATE"
)