Module Values.CreateKxEnvironmentRequestSource

Creates a managed kdb environment for the account.

Sourcetype nonrec t = {
  1. name : KxEnvironmentName.t;
    (*

    The name of the kdb environment that you want to create.

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

    A description for the kdb environment.

    *)
  3. kmsKeyId : KmsKeyARN.t;
    (*

    The KMS key ID to encrypt your data in the FinSpace environment.

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

    A list of key-value pairs to label the kdb environment. You can add up to 50 tags to your kdb environment.

    *)
  5. clientToken : ClientToken.t option;
    (*

    A token that ensures idempotency. This token expires in 10 minutes.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?clientToken:??? -> name:KxEnvironmentName.t -> kmsKeyId:KmsKeyARN.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of KxEnvironmentName.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