amazonka-databrew-2.0: Amazon Glue DataBrew 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.DataBrew.Types.Sample

Description

 
Synopsis

Documentation

data Sample Source #

Represents the sample size and sampling type for DataBrew to use for interactive data analysis.

See: newSample smart constructor.

Constructors

Sample' 

Fields

Instances

Instances details
FromJSON Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

ToJSON Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Generic Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Associated Types

type Rep Sample :: Type -> Type #

Methods

from :: Sample -> Rep Sample x #

to :: Rep Sample x -> Sample #

Read Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Show Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

NFData Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Methods

rnf :: Sample -> () #

Eq Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Methods

(==) :: Sample -> Sample -> Bool #

(/=) :: Sample -> Sample -> Bool #

Hashable Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

Methods

hashWithSalt :: Int -> Sample -> Int #

hash :: Sample -> Int #

type Rep Sample Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Sample

type Rep Sample = D1 ('MetaData "Sample" "Amazonka.DataBrew.Types.Sample" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "Sample'" 'PrefixI 'True) (S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 SampleType)))

newSample Source #

Create a value of Sample 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:Sample', sample_size - The number of rows in the sample.

$sel:type':Sample', sample_type - The way in which DataBrew obtains rows from a dataset.

sample_size :: Lens' Sample (Maybe Natural) Source #

The number of rows in the sample.

sample_type :: Lens' Sample SampleType Source #

The way in which DataBrew obtains rows from a dataset.