amazonka-quicksight-2.0: Amazon QuickSight 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.QuickSight.Types.EmptyVisual

Description

 
Synopsis

Documentation

data EmptyVisual Source #

An empty visual.

Empty visuals are used in layouts but have not been configured to show any data. A new visual created in the Amazon QuickSight console is considered an EmptyVisual until a visual type is selected.

See: newEmptyVisual smart constructor.

Constructors

EmptyVisual' 

Fields

  • actions :: Maybe [VisualCustomAction]

    The list of custom actions that are configured for a visual.

  • visualId :: Text

    The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.

  • dataSetIdentifier :: Text

    The data set that is used in the empty visual. Every visual requires a dataset to render.

Instances

Instances details
FromJSON EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

ToJSON EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

Generic EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

Associated Types

type Rep EmptyVisual :: Type -> Type #

Show EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

NFData EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

Methods

rnf :: EmptyVisual -> () #

Eq EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

Hashable EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

type Rep EmptyVisual Source # 
Instance details

Defined in Amazonka.QuickSight.Types.EmptyVisual

type Rep EmptyVisual = D1 ('MetaData "EmptyVisual" "Amazonka.QuickSight.Types.EmptyVisual" "amazonka-quicksight-2.0-9P6nV9koXl6GTlt8ZjS7C9" 'False) (C1 ('MetaCons "EmptyVisual'" 'PrefixI 'True) (S1 ('MetaSel ('Just "actions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VisualCustomAction])) :*: (S1 ('MetaSel ('Just "visualId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "dataSetIdentifier") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newEmptyVisual Source #

Create a value of EmptyVisual 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:actions:EmptyVisual', emptyVisual_actions - The list of custom actions that are configured for a visual.

$sel:visualId:EmptyVisual', emptyVisual_visualId - The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.

$sel:dataSetIdentifier:EmptyVisual', emptyVisual_dataSetIdentifier - The data set that is used in the empty visual. Every visual requires a dataset to render.

emptyVisual_actions :: Lens' EmptyVisual (Maybe [VisualCustomAction]) Source #

The list of custom actions that are configured for a visual.

emptyVisual_visualId :: Lens' EmptyVisual Text Source #

The unique identifier of a visual. This identifier must be unique within the context of a dashboard, template, or analysis. Two dashboards, analyses, or templates can have visuals with the same identifiers.

emptyVisual_dataSetIdentifier :: Lens' EmptyVisual Text Source #

The data set that is used in the empty visual. Every visual requires a dataset to render.