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

Description

 
Synopsis

Documentation

data ViewFrame Source #

Represents the data being transformed during an action.

See: newViewFrame smart constructor.

Constructors

ViewFrame' 

Fields

Instances

Instances details
ToJSON ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Generic ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Associated Types

type Rep ViewFrame :: Type -> Type #

Read ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Show ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

NFData ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Methods

rnf :: ViewFrame -> () #

Eq ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Hashable ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

type Rep ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

type Rep ViewFrame = D1 ('MetaData "ViewFrame" "Amazonka.DataBrew.Types.ViewFrame" "amazonka-databrew-2.0-GJMXoRzRb387Yq6XNY29RM" 'False) (C1 ('MetaCons "ViewFrame'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "analytics") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe AnalyticsMode)) :*: (S1 ('MetaSel ('Just "columnRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "hiddenColumns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))) :*: (S1 ('MetaSel ('Just "rowRange") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "startRowIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "startColumnIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))))

newViewFrame Source #

Create a value of ViewFrame 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:analytics:ViewFrame', viewFrame_analytics - Controls if analytics computation is enabled or disabled. Enabled by default.

$sel:columnRange:ViewFrame', viewFrame_columnRange - The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.

$sel:hiddenColumns:ViewFrame', viewFrame_hiddenColumns - A list of columns to hide in the view frame.

$sel:rowRange:ViewFrame', viewFrame_rowRange - The number of rows to include in the view frame, beginning with the StartRowIndex value.

$sel:startRowIndex:ViewFrame', viewFrame_startRowIndex - The starting index for the range of rows to return in the view frame.

$sel:startColumnIndex:ViewFrame', viewFrame_startColumnIndex - The starting index for the range of columns to return in the view frame.

viewFrame_analytics :: Lens' ViewFrame (Maybe AnalyticsMode) Source #

Controls if analytics computation is enabled or disabled. Enabled by default.

viewFrame_columnRange :: Lens' ViewFrame (Maybe Natural) Source #

The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.

viewFrame_hiddenColumns :: Lens' ViewFrame (Maybe [Text]) Source #

A list of columns to hide in the view frame.

viewFrame_rowRange :: Lens' ViewFrame (Maybe Int) Source #

The number of rows to include in the view frame, beginning with the StartRowIndex value.

viewFrame_startRowIndex :: Lens' ViewFrame (Maybe Natural) Source #

The starting index for the range of rows to return in the view frame.

viewFrame_startColumnIndex :: Lens' ViewFrame Natural Source #

The starting index for the range of columns to return in the view frame.