Module Values.CreateEndpointAccessRequestSource

Creates an Amazon Redshift Serverless managed VPC endpoint.

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

    The name of the VPC endpoint. 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.

    *)
  2. ownerAccount : OwnerAccount.t option;
    (*

    The owner Amazon Web Services account for the Amazon Redshift Serverless workgroup.

    *)
  3. subnetIds : SubnetIdList.t;
    (*

    The unique identifers of subnets from which Amazon Redshift Serverless chooses one to deploy a VPC endpoint.

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

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

    *)
  5. workgroupName : String_.t;
    (*

    The name of the workgroup to associate with the VPC endpoint.

    *)
}
Sourceval context_ : string
Sourceval make : ?ownerAccount:??? -> ?vpcSecurityGroupIds:??? -> endpointName:String_.t -> subnetIds:SubnetIdList.t -> workgroupName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SubnetId.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