Module Values.AddProfilePermissionRequestSource

Adds cross-account permissions to a signing profile.

Sourcetype nonrec t = {
  1. profileName : ProfileName.t;
    (*

    The human-readable name of the signing profile.

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

    The version of the signing profile.

    *)
  3. action : String_.t;
    (*

    For cross-account signing. Grant a designated account permission to perform one or more of the following actions. Each action is associated with a specific API's operations. For more information about cross-account signing, see Using cross-account signing with signing profiles in the AWS Signer Developer Guide. You can designate the following actions to an account. signer:StartSigningJob. This action isn't supported for container image workflows. For details, see StartSigningJob. signer:SignPayload. This action isn't supported for AWS Lambda workflows. For details, see SignPayload signer:GetSigningProfile. For details, see GetSigningProfile. signer:RevokeSignature. For details, see RevokeSignature.

    *)
  4. principal : String_.t;
    (*

    The AWS principal receiving cross-account permissions. This may be an IAM role or another AWS account ID.

    *)
  5. revisionId : String_.t option;
    (*

    A unique identifier for the current profile revision.

    *)
  6. statementId : String_.t;
    (*

    A unique identifier for the cross-account permission statement.

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