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.NodePropertiesSummary

Description

 
Synopsis

Documentation

data NodePropertiesSummary Source #

An object representing the properties of a node that's associated with a multi-node parallel job.

See: newNodePropertiesSummary smart constructor.

Constructors

NodePropertiesSummary' 

Fields

  • numNodes :: Maybe Int

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

  • nodeIndex :: Maybe Int

    The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

  • isMainNode :: Maybe Bool

    Specifies whether the current node is the main node for a multi-node parallel job.

Instances

Instances details
Eq NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

Read NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

Show NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

Generic NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

Associated Types

type Rep NodePropertiesSummary :: Type -> Type #

NFData NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

Methods

rnf :: NodePropertiesSummary -> () #

Hashable NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

FromJSON NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

type Rep NodePropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.NodePropertiesSummary

type Rep NodePropertiesSummary = D1 ('MetaData "NodePropertiesSummary" "Amazonka.Batch.Types.NodePropertiesSummary" "libZSservicesZSamazonka-batchZSamazonka-batch" 'False) (C1 ('MetaCons "NodePropertiesSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "numNodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "nodeIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "isMainNode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newNodePropertiesSummary :: NodePropertiesSummary Source #

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

$sel:nodeIndex:NodePropertiesSummary', nodePropertiesSummary_nodeIndex - The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

$sel:isMainNode:NodePropertiesSummary', nodePropertiesSummary_isMainNode - Specifies whether the current node is the main node for a multi-node parallel job.

nodePropertiesSummary_numNodes :: Lens' NodePropertiesSummary (Maybe Int) Source #

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

nodePropertiesSummary_nodeIndex :: Lens' NodePropertiesSummary (Maybe Int) Source #

The node index for the node. Node index numbering begins at zero. This index is also available on the node with the AWS_BATCH_JOB_NODE_INDEX environment variable.

nodePropertiesSummary_isMainNode :: Lens' NodePropertiesSummary (Maybe Bool) Source #

Specifies whether the current node is the main node for a multi-node parallel job.