Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NodegroupResources

import type { NodegroupResources } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

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

interface NodegroupResources {
autoScalingGroups?: AutoScalingGroup[] | null;
remoteAccessSecurityGroup?: string | null;
}

§Properties

§
autoScalingGroups?: AutoScalingGroup[] | null
[src]

The Auto Scaling groups associated with the node group.

§
remoteAccessSecurityGroup?: string | null
[src]

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