Module Values.CreateMountTargetRequestSource

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t;
    (*

    The ID of the file system for which to create the mount target.

    *)
  2. subnetId : SubnetId.t;
    (*

    The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone.

    *)
  3. ipAddress : IpAddress.t option;
    (*

    If the IP address type for the mount target is IPv4, then specify the IPv4 address within the address range of the specified subnet.

    *)
  4. ipv6Address : Ipv6Address.t option;
    (*

    If the IP address type for the mount target is IPv6, then specify the IPv6 address within the address range of the specified subnet.

    *)
  5. ipAddressType : IpAddressType.t option;
    (*

    Specify the type of IP address of the mount target you are creating. Options are IPv4, dual stack, or IPv6. If you don’t specify an IpAddressType, then IPv4 is used. IPV4_ONLY – Create mount target with IPv4 only subnet or dual-stack subnet. DUAL_STACK – Create mount target with dual-stack subnet. IPV6_ONLY – Create mount target with IPv6 only subnet. Creating IPv6 mount target only ENI in dual-stack subnet is not supported.

    *)
  6. securityGroups : SecurityGroups.t option;
    (*

    VPC security group IDs, of the form sg-xxxxxxxx. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see Amazon VPC Quotas in the Amazon VPC User Guide (see the Security Groups table).

    *)
}
Sourceval context_ : string
Sourceval make : ?ipAddress:??? -> ?ipv6Address:??? -> ?ipAddressType:??? -> ?securityGroups:??? -> fileSystemId:FileSystemId.t -> subnetId:SubnetId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SecurityGroup.t ] list | `String of FileSystemId.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