Module Values.PermissionSource

Permissions designate which private CA actions can be performed by an Amazon Web Services service or entity. In order for ACM to automatically renew private certificates, you must give the ACM service principal all available permissions (IssueCertificate, GetCertificate, and ListPermissions). Permissions can be assigned with the CreatePermission action, removed with the DeletePermission action, and listed with the ListPermissions action.

Sourcetype nonrec t = {
  1. certificateAuthorityArn : Arn.t option;
    (*

    The Amazon Resource Number (ARN) of the private CA from which the permission was issued.

    *)
  2. createdAt : TStamp.t option;
    (*

    The time at which the permission was created.

    *)
  3. principal : Principal.t option;
    (*

    The Amazon Web Services service or entity that holds the permission. At this time, the only valid principal is acm.amazonaws.com.

    *)
  4. sourceAccount : AccountId.t option;
    (*

    The ID of the account that assigned the permission.

    *)
  5. actions : ActionList.t option;
    (*

    The private CA actions that can be performed by the designated Amazon Web Services service.

    *)
  6. policy : AWSPolicy.t option;
    (*

    The name of the policy that is associated with the permission.

    *)
}
Sourceval make : ?certificateAuthorityArn:??? -> ?createdAt:??? -> ?principal:??? -> ?sourceAccount:??? -> ?actions:??? -> ?policy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of Arn.t | `Timestamp of TStamp.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