Module Values.PermissionSource

A cross-account permission for a signing profile.

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

    An AWS Signer action permitted as part of cross-account permissions.

    *)
  2. principal : String_.t option;
    (*

    The AWS principal that has been granted a cross-account permission.

    *)
  3. statementId : String_.t option;
    (*

    A unique identifier for a cross-account permission statement.

    *)
  4. profileVersion : ProfileVersion.t option;
    (*

    The signing profile version that a permission applies to.

    *)
}
Sourceval make : ?action:??? -> ?principal:??? -> ?statementId:??? -> ?profileVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) 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