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

Description

 
Synopsis

Documentation

data DecimalParameterDeclaration Source #

A parameter declaration for the Decimal data type.

See: newDecimalParameterDeclaration smart constructor.

Constructors

DecimalParameterDeclaration' 

Fields

Instances

Instances details
FromJSON DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

ToJSON DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

Generic DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

Associated Types

type Rep DecimalParameterDeclaration :: Type -> Type #

Show DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

NFData DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

Eq DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

Hashable DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

type Rep DecimalParameterDeclaration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.DecimalParameterDeclaration

type Rep DecimalParameterDeclaration = D1 ('MetaData "DecimalParameterDeclaration" "Amazonka.QuickSight.Types.DecimalParameterDeclaration" "amazonka-quicksight-2.0-9P6nV9koXl6GTlt8ZjS7C9" 'False) (C1 ('MetaCons "DecimalParameterDeclaration'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "defaultValues") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DecimalDefaultValues)) :*: S1 ('MetaSel ('Just "valueWhenUnset") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DecimalValueWhenUnsetConfiguration))) :*: (S1 ('MetaSel ('Just "parameterValueType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ParameterValueType) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDecimalParameterDeclaration Source #

Create a value of DecimalParameterDeclaration 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:defaultValues:DecimalParameterDeclaration', decimalParameterDeclaration_defaultValues - The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.

$sel:valueWhenUnset:DecimalParameterDeclaration', decimalParameterDeclaration_valueWhenUnset - The configuration that defines the default value of a Decimal parameter when a value has not been set.

$sel:parameterValueType:DecimalParameterDeclaration', decimalParameterDeclaration_parameterValueType - The value type determines whether the parameter is a single-value or multi-value parameter.

$sel:name:DecimalParameterDeclaration', decimalParameterDeclaration_name - The name of the parameter that is being declared.

decimalParameterDeclaration_defaultValues :: Lens' DecimalParameterDeclaration (Maybe DecimalDefaultValues) Source #

The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.

decimalParameterDeclaration_valueWhenUnset :: Lens' DecimalParameterDeclaration (Maybe DecimalValueWhenUnsetConfiguration) Source #

The configuration that defines the default value of a Decimal parameter when a value has not been set.

decimalParameterDeclaration_parameterValueType :: Lens' DecimalParameterDeclaration ParameterValueType Source #

The value type determines whether the parameter is a single-value or multi-value parameter.

decimalParameterDeclaration_name :: Lens' DecimalParameterDeclaration Text Source #

The name of the parameter that is being declared.