libZSservicesZSamazonka-batchZSamazonka-batch
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.Batch.Types.NodeProperties

Description

 
Synopsis

Documentation

data NodeProperties Source #

An object representing the node properties of a multi-node parallel job.

See: newNodeProperties smart constructor.

Constructors

NodeProperties' 

Fields

  • numNodes :: Int

    The number of nodes associated with a multi-node parallel job.

  • mainNode :: Int

    Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.

  • nodeRangeProperties :: [NodeRangeProperty]

    A list of node ranges and their properties associated with a multi-node parallel job.

Instances

Instances details
Eq NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

Read NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

Show NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

Generic NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

Associated Types

type Rep NodeProperties :: Type -> Type #

NFData NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

Methods

rnf :: NodeProperties -> () #

Hashable NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

ToJSON NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

FromJSON NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

type Rep NodeProperties Source # 
Instance details

Defined in Amazonka.Batch.Types.NodeProperties

type Rep NodeProperties = D1 ('MetaData "NodeProperties" "Amazonka.Batch.Types.NodeProperties" "libZSservicesZSamazonka-batchZSamazonka-batch" 'False) (C1 ('MetaCons "NodeProperties'" 'PrefixI 'True) (S1 ('MetaSel ('Just "numNodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: (S1 ('MetaSel ('Just "mainNode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "nodeRangeProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [NodeRangeProperty]))))

newNodeProperties Source #

Create a value of NodeProperties 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:numNodes:NodeProperties', nodeProperties_numNodes - The number of nodes associated with a multi-node parallel job.

$sel:mainNode:NodeProperties', nodeProperties_mainNode - Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.

$sel:nodeRangeProperties:NodeProperties', nodeProperties_nodeRangeProperties - A list of node ranges and their properties associated with a multi-node parallel job.

nodeProperties_numNodes :: Lens' NodeProperties Int Source #

The number of nodes associated with a multi-node parallel job.

nodeProperties_mainNode :: Lens' NodeProperties Int Source #

Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.

nodeProperties_nodeRangeProperties :: Lens' NodeProperties [NodeRangeProperty] Source #

A list of node ranges and their properties associated with a multi-node parallel job.