Module Values.StartSigningJobRequestSource

Initiates a signing job to be performed on the code provided. Signing jobs are viewable by the ListSigningJobs operation. Note the following requirements: You must create an Amazon S3 source bucket. For more information, see Creating a Bucket in the Amazon S3 Getting Started Guide. Your S3 source bucket must be version enabled. You must create an S3 destination bucket. AWS Signer uses your S3 destination bucket to write your signed code. You specify the name of the source and destination buckets when calling the StartSigningJob operation. You must ensure the S3 buckets are from the same Region as the signing profile. Cross-Region signing isn't supported. You must also specify a request token that identifies your request to Signer. You can call the DescribeSigningJob and the ListSigningJobs actions after you call StartSigningJob. For a Java example that shows how to use this action, see StartSigningJob.

Sourcetype nonrec t = {
  1. source : Source.t;
    (*

    The S3 bucket that contains the object to sign or a BLOB that contains your raw code.

    *)
  2. destination : Destination.t;
    (*

    The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.

    *)
  3. profileName : ProfileName.t;
    (*

    The name of the signing profile.

    *)
  4. clientRequestToken : ClientRequestToken.t;
    (*

    String that identifies the signing request. All calls after the first that use this token return the same response as the first call.

    *)
  5. profileOwner : AccountId.t option;
    (*

    The AWS account ID of the signing profile owner.

    *)
}
Sourceval context_ : string
Sourceval make : ?profileOwner:??? -> source:Source.t -> destination:Destination.t -> profileName:ProfileName.t -> clientRequestToken:ClientRequestToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ProfileName.t | `Structure of (string * [> `Structure of (string * [> `String of BucketName.t ]) list ]) 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