libZSservicesZSamazonka-eksZSamazonka-eks
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.EKS.Types.NodegroupResources

Description

 
Synopsis

Documentation

data NodegroupResources Source #

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

See: newNodegroupResources smart constructor.

Constructors

NodegroupResources' 

Fields

Instances

Instances details
Eq NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

Read NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

Show NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

Generic NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

Associated Types

type Rep NodegroupResources :: Type -> Type #

NFData NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

Methods

rnf :: NodegroupResources -> () #

Hashable NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

FromJSON NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

type Rep NodegroupResources Source # 
Instance details

Defined in Amazonka.EKS.Types.NodegroupResources

type Rep NodegroupResources = D1 ('MetaData "NodegroupResources" "Amazonka.EKS.Types.NodegroupResources" "libZSservicesZSamazonka-eksZSamazonka-eks" 'False) (C1 ('MetaCons "NodegroupResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "remoteAccessSecurityGroup") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "autoScalingGroups") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [AutoScalingGroup]))))

newNodegroupResources :: NodegroupResources Source #

Create a value of NodegroupResources with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:remoteAccessSecurityGroup:NodegroupResources', nodegroupResources_remoteAccessSecurityGroup - The remote access security group associated with the node group. This security group controls SSH access to the nodes.

$sel:autoScalingGroups:NodegroupResources', nodegroupResources_autoScalingGroups - The Auto Scaling groups associated with the node group.

nodegroupResources_remoteAccessSecurityGroup :: Lens' NodegroupResources (Maybe Text) Source #

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

nodegroupResources_autoScalingGroups :: Lens' NodegroupResources (Maybe [AutoScalingGroup]) Source #

The Auto Scaling groups associated with the node group.