Module Values.CreateKeySigningKeyResponseSource

Creates a new key-signing key (KSK) associated with a hosted zone. You can only have two KSKs per hosted zone.

Sourcetype nonrec t = {
  1. changeInfo : ChangeInfo.t option;
  2. keySigningKey : KeySigningKey.t option;
    (*

    The key-signing key (KSK) that the request creates.

    *)
  3. location : ResourceURI.t option;
    (*

    The unique URL representing the new key-signing key (KSK).

    *)
}
Sourcetype nonrec error = [
  1. | `ConcurrentModification of ConcurrentModification.t
  2. | `InvalidArgument of InvalidArgument.t
  3. | `InvalidInput of InvalidInput.t
  4. | `InvalidKMSArn of InvalidKMSArn.t
  5. | `InvalidKeySigningKeyName of InvalidKeySigningKeyName.t
  6. | `InvalidKeySigningKeyStatus of InvalidKeySigningKeyStatus.t
  7. | `InvalidSigningStatus of InvalidSigningStatus.t
  8. | `KeySigningKeyAlreadyExists of KeySigningKeyAlreadyExists.t
  9. | `NoSuchHostedZone of NoSuchHostedZone.t
  10. | `TooManyKeySigningKeys of TooManyKeySigningKeys.t
  11. | `Unknown_operation_error of string * string option
]
Sourceval make : ?changeInfo:??? -> ?keySigningKey:??? -> ?location:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConcurrentModification of ConcurrentModification.t | `InvalidArgument of InvalidArgument.t | `InvalidInput of InvalidInput.t | `InvalidKMSArn of InvalidKMSArn.t | `InvalidKeySigningKeyName of InvalidKeySigningKeyName.t | `InvalidKeySigningKeyStatus of InvalidKeySigningKeyStatus.t | `InvalidSigningStatus of InvalidSigningStatus.t | `KeySigningKeyAlreadyExists of KeySigningKeyAlreadyExists.t | `NoSuchHostedZone of NoSuchHostedZone.t | `TooManyKeySigningKeys of TooManyKeySigningKeys.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConcurrentModification of ConcurrentModification.t | `InvalidArgument of InvalidArgument.t | `InvalidInput of InvalidInput.t | `InvalidKMSArn of InvalidKMSArn.t | `InvalidKeySigningKeyName of InvalidKeySigningKeyName.t | `InvalidKeySigningKeyStatus of InvalidKeySigningKeyStatus.t | `InvalidSigningStatus of InvalidSigningStatus.t | `KeySigningKeyAlreadyExists of KeySigningKeyAlreadyExists.t | `NoSuchHostedZone of NoSuchHostedZone.t | `TooManyKeySigningKeys of TooManyKeySigningKeys.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceURI.t | `Structure of (string * [> `Enum of string | `Integer of SigningKeyInteger.t | `String of ResourceId.t | `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