Module Values.UpdateRepositoryEncryptionKeyInputSource

Updates the Key Management Service encryption key used to encrypt and decrypt a CodeCommit repository.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t;
    (*

    The name of the repository for which you want to update the KMS encryption key used to encrypt and decrypt the repository.

    *)
  2. kmsKeyId : KmsKeyId.t;
    (*

    The ID of the encryption key. You can view the ID of an encryption key in the KMS console, or use the KMS APIs to programmatically retrieve a key ID. For more information about acceptable values for keyID, see KeyId in the Decrypt API description in the Key Management Service API Reference.

    *)
}
Sourceval context_ : string
Sourceval make : repositoryName:RepositoryName.t -> kmsKeyId:KmsKeyId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.t ]) 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