Module Values.CreateKxEnvironmentResponseSource

Creates a managed kdb environment for the account.

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

    The name of the kdb environment.

    *)
  2. status : EnvironmentStatus.t option;
    (*

    The status of the kdb environment.

    *)
  3. environmentId : IdType.t option;
    (*

    A unique identifier for the kdb environment.

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

    A description for the kdb environment.

    *)
  5. environmentArn : EnvironmentArn.t option;
    (*

    The ARN identifier of the environment.

    *)
  6. kmsKeyId : KmsKeyId.t option;
    (*

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

    *)
  7. creationTimestamp : Timestamp.t option;
    (*

    The timestamp at which the kdb environment was created in FinSpace.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `LimitExceededException of LimitExceededException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?name:??? -> ?status:??? -> ?environmentId:??? -> ?description:??? -> ?environmentArn:??? -> ?kmsKeyId:??? -> ?creationTimestamp:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `LimitExceededException of LimitExceededException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `LimitExceededException of LimitExceededException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KxEnvironmentName.t | `Timestamp of Timestamp.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