amazonka-batch-2.0: Amazon Batch SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Batch.Types.ArrayPropertiesSummary

Description

 
Synopsis

Documentation

data ArrayPropertiesSummary Source #

An object that represents the array properties of a job.

See: newArrayPropertiesSummary smart constructor.

Constructors

ArrayPropertiesSummary' 

Fields

  • index :: Maybe Int

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

  • size :: Maybe Int

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

Instances

Instances details
FromJSON ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

Generic ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

Associated Types

type Rep ArrayPropertiesSummary :: Type -> Type #

Read ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

Show ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

NFData ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

Methods

rnf :: ArrayPropertiesSummary -> () #

Eq ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

Hashable ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

type Rep ArrayPropertiesSummary Source # 
Instance details

Defined in Amazonka.Batch.Types.ArrayPropertiesSummary

type Rep ArrayPropertiesSummary = D1 ('MetaData "ArrayPropertiesSummary" "Amazonka.Batch.Types.ArrayPropertiesSummary" "amazonka-batch-2.0-Ey2VZ5obnq65VwmlrJ2r2K" 'False) (C1 ('MetaCons "ArrayPropertiesSummary'" 'PrefixI 'True) (S1 ('MetaSel ('Just "index") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))

newArrayPropertiesSummary :: ArrayPropertiesSummary Source #

Create a value of ArrayPropertiesSummary 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:index:ArrayPropertiesSummary', arrayPropertiesSummary_index - The job index within the array that's associated with this job. This parameter is returned for children of array jobs.

$sel:size:ArrayPropertiesSummary', arrayPropertiesSummary_size - The size of the array job. This parameter is returned for parent array jobs.

arrayPropertiesSummary_index :: Lens' ArrayPropertiesSummary (Maybe Int) Source #

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

arrayPropertiesSummary_size :: Lens' ArrayPropertiesSummary (Maybe Int) Source #

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