Module Values.SigningProfileSource

Contains information about the ACM certificates and signing configuration parameters that can be used by a given code signing user.

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

    The name of the signing profile.

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

    The version of a signing profile.

    *)
  3. profileVersionArn : Arn.t option;
    (*

    The ARN of a signing profile, including the profile version.

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

    The ACM certificate that is available for use by a signing profile.

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

    The validity period for a signing job created using this signing profile.

    *)
  6. platformId : PlatformId.t option;
    (*

    The ID of a platform that is available for use by a signing profile.

    *)
  7. platformDisplayName : DisplayName.t option;
    (*

    The name of the signing platform.

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

    The parameters that are available for use by a Signer user.

    *)
  9. status : SigningProfileStatus.t option;
    (*

    The status of a signing profile.

    *)
  10. arn : string option;
    (*

    The Amazon Resource Name (ARN) for the signing profile.

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

    A list of tags associated with the signing profile.

    *)
}
Sourceval make : ?profileName:??? -> ?profileVersion:??? -> ?profileVersionArn:??? -> ?signingMaterial:??? -> ?signatureValidityPeriod:??? -> ?platformId:??? -> ?platformDisplayName:??? -> ?signingParameters:??? -> ?status:??? -> ?arn:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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 ]) 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