amazonka-glue-2.0: Amazon Glue 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.Glue.Types.AggregateOperation

Description

 
Synopsis

Documentation

data AggregateOperation Source #

Specifies the set of parameters needed to perform aggregation in the aggregate transform.

See: newAggregateOperation smart constructor.

Constructors

AggregateOperation' 

Fields

  • column :: [Text]

    Specifies the column on the data set on which the aggregation function will be applied.

  • aggFunc :: AggFunction

    Specifies the aggregation function to apply.

    Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop

Instances

Instances details
FromJSON AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

ToJSON AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

Generic AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

Associated Types

type Rep AggregateOperation :: Type -> Type #

Read AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

Show AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

NFData AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

Methods

rnf :: AggregateOperation -> () #

Eq AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

Hashable AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

type Rep AggregateOperation Source # 
Instance details

Defined in Amazonka.Glue.Types.AggregateOperation

type Rep AggregateOperation = D1 ('MetaData "AggregateOperation" "Amazonka.Glue.Types.AggregateOperation" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "AggregateOperation'" 'PrefixI 'True) (S1 ('MetaSel ('Just "column") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text]) :*: S1 ('MetaSel ('Just "aggFunc") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 AggFunction)))

newAggregateOperation Source #

Create a value of AggregateOperation 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:column:AggregateOperation', aggregateOperation_column - Specifies the column on the data set on which the aggregation function will be applied.

$sel:aggFunc:AggregateOperation', aggregateOperation_aggFunc - Specifies the aggregation function to apply.

Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop

aggregateOperation_column :: Lens' AggregateOperation [Text] Source #

Specifies the column on the data set on which the aggregation function will be applied.

aggregateOperation_aggFunc :: Lens' AggregateOperation AggFunction Source #

Specifies the aggregation function to apply.

Possible aggregation functions include: avg countDistinct, count, first, last, kurtosis, max, min, skewness, stddev_samp, stddev_pop, sum, sumDistinct, var_samp, var_pop