Module Values.CreateEndpointAccessMessageSource

Creates a Redshift-managed VPC endpoint.

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

    The cluster identifier of the cluster to access.

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

    The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.

    *)
  3. endpointName : String_.t;
    (*

    The Redshift-managed VPC endpoint name. An endpoint name must contain 1-30 characters. Valid characters are A-Z, a-z, 0-9, and hyphen(-). The first character must be a letter. The name can't contain two consecutive hyphens or end with a hyphen.

    *)
  4. subnetGroupName : String_.t;
    (*

    The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.

    *)
  5. vpcSecurityGroupIds : VpcSecurityGroupIdList.t option;
    (*

    The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.

    *)
}
Sourceval context_ : string
Sourceval make : ?clusterIdentifier:??? -> ?resourceOwner:??? -> ?vpcSecurityGroupIds:??? -> endpointName:String_.t -> subnetGroupName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of String_.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