Module Values.VpcOptionsSource

Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.

Sourcetype nonrec t = {
  1. subnetIds : SubnetIds.t;
    (*

    A list of subnet IDs associated with the VPC endpoint.

    *)
  2. securityGroupIds : SecurityGroupIds.t option;
    (*

    A list of security groups associated with the VPC endpoint.

    *)
  3. vpcAttachmentOptions : VpcAttachmentOptions.t option;
    (*

    Options for attaching a VPC to a pipeline.

    *)
  4. vpcEndpointManagement : VpcEndpointManagement.t option;
    (*

    Defines whether you or Amazon OpenSearch Ingestion service create and manage the VPC endpoint configured for the pipeline.

    *)
}
Sourceval context_ : string
Sourceval make : ?securityGroupIds:??? -> ?vpcAttachmentOptions:??? -> ?vpcEndpointManagement:??? -> subnetIds:SubnetIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SubnetId.t ] list | `Structure of (string * [> `Boolean of Boolean.t | `String of CidrBlock.t ]) list ]) 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