libZSservicesZSamazonka-databrewZSamazonka-databrew
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.DataBrew.Types.ViewFrame

Description

 
Synopsis

Documentation

data ViewFrame Source #

Represents the data being transformed during an action.

See: newViewFrame smart constructor.

Constructors

ViewFrame' 

Fields

  • hiddenColumns :: Maybe [Text]

    A list of columns to hide in the view frame.

  • columnRange :: Maybe Natural

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

  • startColumnIndex :: Natural

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

Instances

Instances details
Eq ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Read ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Show 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 #

NFData ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

Methods

rnf :: ViewFrame -> () #

Hashable ViewFrame Source # 
Instance details

Defined in Amazonka.DataBrew.Types.ViewFrame

ToJSON 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" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "ViewFrame'" 'PrefixI 'True) (S1 ('MetaSel ('Just "hiddenColumns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "columnRange") '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:hiddenColumns:ViewFrame', viewFrame_hiddenColumns - A list of columns to hide in the view frame.

$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:startColumnIndex:ViewFrame', viewFrame_startColumnIndex - The starting index for the range of columns to return in the view frame.

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

A list of columns to hide in the view frame.

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_startColumnIndex :: Lens' ViewFrame Natural Source #

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