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

Description

 
Synopsis

Documentation

data ArrayPropertiesDetail Source #

An object representing the array properties of a job.

See: newArrayPropertiesDetail smart constructor.

Constructors

ArrayPropertiesDetail' 

Fields

  • size :: Maybe Int

    The size of the array job. This parameter is returned for parent array jobs.

  • statusSummary :: Maybe (HashMap Text Int)

    A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

  • index :: Maybe Int

    The job index within the array that's associated with this job. This parameter is returned for array job children.

Instances

Instances details
Eq ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

Read ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

Show ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

Generic ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

Associated Types

type Rep ArrayPropertiesDetail :: Type -> Type #

NFData ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

Methods

rnf :: ArrayPropertiesDetail -> () #

Hashable ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

FromJSON ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

type Rep ArrayPropertiesDetail Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesDetail

type Rep ArrayPropertiesDetail = D1 ('MetaData "ArrayPropertiesDetail" "Amazonka.Batch.Types.ArrayPropertiesDetail" "libZSservicesZSamazonka-batchZSamazonka-batch" 'False) (C1 ('MetaCons "ArrayPropertiesDetail'" 'PrefixI 'True) (S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "statusSummary") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Int))) :*: S1 ('MetaSel ('Just "index") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))))

newArrayPropertiesDetail :: ArrayPropertiesDetail Source #

Create a value of ArrayPropertiesDetail 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:size:ArrayPropertiesDetail', arrayPropertiesDetail_size - The size of the array job. This parameter is returned for parent array jobs.

$sel:statusSummary:ArrayPropertiesDetail', arrayPropertiesDetail_statusSummary - A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

$sel:index:ArrayPropertiesDetail', arrayPropertiesDetail_index - The job index within the array that's associated with this job. This parameter is returned for array job children.

arrayPropertiesDetail_size :: Lens' ArrayPropertiesDetail (Maybe Int) Source #

The size of the array job. This parameter is returned for parent array jobs.

arrayPropertiesDetail_statusSummary :: Lens' ArrayPropertiesDetail (Maybe (HashMap Text Int)) Source #

A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

arrayPropertiesDetail_index :: Lens' ArrayPropertiesDetail (Maybe Int) Source #

The job index within the array that's associated with this job. This parameter is returned for array job children.