Module Values.ClusterSubnetGroupSource

Describes a subnet group.

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

    The name of the cluster subnet group.

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

    The description of the cluster subnet group.

    *)
  3. vpcId : String_.t option;
    (*

    The VPC ID of the cluster subnet group.

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

    The status of the cluster subnet group. Possible values are Complete, Incomplete and Invalid.

    *)
  5. subnets : SubnetList.t option;
    (*

    A list of the VPC Subnet elements.

    *)
  6. tags : TagList.t option;
    (*

    The list of tags for the cluster subnet group.

    *)
  7. supportedClusterIpAddressTypes : ValueStringList.t option;
    (*

    The IP address types supported by this cluster subnet group. Possible values are ipv4 and dualstack.

    *)
}
Sourceval make : ?clusterSubnetGroupName:??? -> ?description:??? -> ?vpcId:??? -> ?subnetGroupStatus:??? -> ?subnets:??? -> ?tags:??? -> ?supportedClusterIpAddressTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]) list ] 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