Module Values.PutSigningProfileRequestSource

Creates a signing profile. A signing profile is a code-signing template that can be used to carry out a pre-defined signing job.

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

    The name of the signing profile to be created.

    *)
  2. signingMaterial : SigningMaterial.t option;
    (*

    The AWS Certificate Manager certificate that will be used to sign code with the new signing profile.

    *)
  3. signatureValidityPeriod : SignatureValidityPeriod.t option;
    (*

    The default validity period override for any signature generated using this signing profile. If unspecified, the default is 135 months.

    *)
  4. platformId : PlatformId.t;
    (*

    The ID of the signing platform to be created.

    *)
  5. overrides : SigningPlatformOverrides.t option;
    (*

    A subfield of platform. This specifies any different configuration options that you want to apply to the chosen platform (such as a different hash-algorithm or signing-algorithm).

    *)
  6. signingParameters : SigningParameters.t option;
    (*

    Map of key-value pairs for signing. These can include any information that you want to use during signing.

    *)
  7. tags : TagMap.t option;
    (*

    Tags to be associated with the signing profile that is being created.

    *)
}
Sourceval context_ : string
Sourceval make : ?signingMaterial:??? -> ?signatureValidityPeriod:??? -> ?overrides:??? -> ?signingParameters:??? -> ?tags:??? -> profileName:ProfileName.t -> platformId:PlatformId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of SigningParameterKey.t ] * [> `String of SigningParameterValue.t ]) list | `String of ProfileName.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of CertificateArn.t | `Structure of (string * [> `Enum of string ]) 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