Module Values.MpaTeamAssociationSource

The details of an MPA team association with a protected operation.

Sourcetype nonrec t = {
  1. action : MpaOperation.t option;
    (*

    The protected operation associated with the MPA team.

    *)
  2. mpaTeamArn : MpaTeamArn.t option;
    (*

    The ARN of the MPA team.

    *)
  3. associationState : AssociationState.t option;
    (*

    The state of the MPA team association.

    *)
  4. mpaStatus : MpaStatus.t option;
    (*

    The MPA session status for the association, if applicable.

    *)
}
Sourceval make : ?action:??? -> ?mpaTeamArn:??? -> ?associationState:??? -> ?mpaStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MpaTeamArn.t | `Structure of (string * [> `Enum of string | `String of MpaSessionArn.t | `Timestamp of Timestamp.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t