Module Values.NodegroupResourcesSource

An object representing the resources associated with the node group, such as Auto Scaling groups and security groups for remote access.

Sourcetype nonrec t = {
  1. autoScalingGroups : AutoScalingGroupList.t option;
    (*

    The Auto Scaling groups associated with the node group.

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

    The remote access security group associated with the node group. This security group controls SSH access to the nodes.

    *)
}
Sourceval make : ?autoScalingGroups:??? -> ?remoteAccessSecurityGroup:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) 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