Module Values.CodeSigningConfigSource

Details about a Code signing configuration.

Sourcetype nonrec t = {
  1. codeSigningConfigId : CodeSigningConfigId.t option;
    (*

    Unique identifer for the Code signing configuration.

    *)
  2. codeSigningConfigArn : CodeSigningConfigArn.t option;
    (*

    The Amazon Resource Name (ARN) of the Code signing configuration.

    *)
  3. description : Description.t option;
    (*

    Code signing configuration description.

    *)
  4. allowedPublishers : AllowedPublishers.t option;
    (*

    List of allowed publishers.

    *)
  5. codeSigningPolicies : CodeSigningPolicies.t option;
    (*

    The code signing policy controls the validation failure action for signature mismatch or expiry.

    *)
  6. lastModified : Timestamp.t option;
    (*

    The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

    *)
}
Sourceval make : ?codeSigningConfigId:??? -> ?codeSigningConfigArn:??? -> ?description:??? -> ?allowedPublishers:??? -> ?codeSigningPolicies:??? -> ?lastModified:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CodeSigningConfigId.t | `Structure of (string * [> `Enum of string | `List of [> `String of Arn.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