Module Values.GetSigningProfileResponseSource

Returns information on a specific signing profile.

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

    The name of the target signing profile.

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

    The current version of the signing profile.

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

    The signing profile ARN, including the profile version.

    *)
  4. revocationRecord : SigningProfileRevocationRecord.t option;
  5. signingMaterial : SigningMaterial.t option;
    (*

    The ARN of the certificate that the target profile uses for signing operations.

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

    The ID of the platform that is used by the target signing profile.

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

    A human-readable name for the signing platform associated with the signing profile.

    *)
  8. signatureValidityPeriod : SignatureValidityPeriod.t option;
  9. overrides : SigningPlatformOverrides.t option;
    (*

    A list of overrides applied by the target signing profile for signing operations.

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

    A map of key-value pairs for signing operations that is attached to the target signing profile.

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

    The status of the target signing profile.

    *)
  12. statusReason : String_.t option;
    (*

    Reason for the status of the target signing profile.

    *)
  13. arn : string option;
    (*

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

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

    A list of tags associated with the signing profile.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServiceErrorException of InternalServiceErrorException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `TooManyRequestsException of TooManyRequestsException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?profileName:??? -> ?profileVersion:??? -> ?profileVersionArn:??? -> ?revocationRecord:??? -> ?signingMaterial:??? -> ?platformId:??? -> ?platformDisplayName:??? -> ?signatureValidityPeriod:??? -> ?overrides:??? -> ?signingParameters:??? -> ?status:??? -> ?statusReason:??? -> ?arn:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServiceErrorException of InternalServiceErrorException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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 String_.t | `Structure of (string * [> `Enum of string ]) list | `Timestamp of Timestamp.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