Module Values.EndpointAccessSource

Information about an Amazon Redshift Serverless VPC endpoint.

Sourcetype nonrec t = {
  1. address : String_.t option;
    (*

    The DNS address of the endpoint.

    *)
  2. endpointArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the VPC endpoint.

    *)
  3. endpointCreateTime : SyntheticTimestamp_date_time.t option;
    (*

    The time that the endpoint was created.

    *)
  4. endpointName : String_.t option;
    (*

    The name of the VPC endpoint.

    *)
  5. endpointStatus : String_.t option;
    (*

    The status of the VPC endpoint.

    *)
  6. port : Integer.t option;
    (*

    The port number on which Amazon Redshift Serverless accepts incoming connections.

    *)
  7. subnetIds : SubnetIdList.t option;
    (*

    The unique identifier of subnets where Amazon Redshift Serverless choose to deploy the VPC endpoint.

    *)
  8. vpcEndpoint : VpcEndpoint.t option;
    (*

    The connection endpoint for connecting to Amazon Redshift Serverless.

    *)
  9. vpcSecurityGroups : VpcSecurityGroupMembershipList.t option;
    (*

    The security groups associated with the endpoint.

    *)
  10. workgroupName : String_.t option;
    (*

    The name of the workgroup associated with the endpoint.

    *)
}
Sourceval make : ?address:??? -> ?endpointArn:??? -> ?endpointCreateTime:??? -> ?endpointName:??? -> ?endpointStatus:??? -> ?port:??? -> ?subnetIds:??? -> ?vpcEndpoint:??? -> ?vpcSecurityGroups:??? -> ?workgroupName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of SubnetId.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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