Module Values.KxEnvironmentSource

The details of a kdb environment.

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

    The name of the kdb environment.

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

    A unique identifier for the kdb environment.

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

    The unique identifier of the AWS account in which you create the kdb environment.

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

    The status of the environment creation. CREATE_REQUESTED – Environment creation has been requested. CREATING – Environment is in the process of being created. FAILED_CREATION – Environment creation has failed. CREATED – Environment is successfully created and is currently active. DELETE REQUESTED – Environment deletion has been requested. DELETING – Environment is in the process of being deleted. RETRY_DELETION – Initial environment deletion failed, system is reattempting delete. DELETED – Environment has been deleted. FAILED_DELETION – Environment deletion has failed.

    *)
  5. tgwStatus : TgwStatus.t option;
    (*

    The status of the network configuration.

    *)
  6. dnsStatus : DnsStatus.t option;
    (*

    The status of DNS configuration.

    *)
  7. errorMessage__lc1 : EnvironmentErrorMessage.t option;
    (*

    Specifies the error message that appears if a flow fails.

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

    A description of the kdb environment.

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

    The Amazon Resource Name (ARN) of your kdb environment.

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

    The unique identifier of the KMS key.

    *)
  11. dedicatedServiceAccountId : IdType.t option;
    (*

    A unique identifier for the AWS environment infrastructure account.

    *)
  12. transitGatewayConfiguration : TransitGatewayConfiguration.t option;
    (*

    Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.

    *)
  13. customDNSConfiguration : CustomDNSConfiguration.t option;
    (*

    A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.

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

    The timestamp at which the kdb environment was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  15. updateTimestamp : Timestamp.t option;
    (*

    The timestamp at which the kdb environment was modified in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  16. availabilityZoneIds : AvailabilityZoneIds.t option;
    (*

    The identifier of the availability zones where subnets for the environment are created.

    *)
  17. certificateAuthorityArn : StringValueLength1to255.t option;
    (*

    The Amazon Resource Name (ARN) of the certificate authority:

    *)
}
Sourceval make : ?name:??? -> ?environmentId:??? -> ?awsAccountId:??? -> ?status:??? -> ?tgwStatus:??? -> ?dnsStatus:??? -> ?errorMessage__lc1:??? -> ?description:??? -> ?environmentArn:??? -> ?kmsKeyId:??? -> ?dedicatedServiceAccountId:??? -> ?transitGatewayConfiguration:??? -> ?customDNSConfiguration:??? -> ?creationTimestamp:??? -> ?updateTimestamp:??? -> ?availabilityZoneIds:??? -> ?certificateAuthorityArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AvailabilityZoneId.t | `Structure of (string * [> `String of ValidHostname.t ]) list ] list | `String of KxEnvironmentName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of RuleNumber.t | `String of Protocol.t | `Structure of (string * [> `Integer of Port.t ]) list ]) list ] list | `String of TransitGatewayID.t ]) list | `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