amazonka-glue-2.0: Amazon Glue 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.Glue.Types.TransformConfigParameter

Description

 
Synopsis

Documentation

data TransformConfigParameter Source #

Specifies the parameters in the config file of the dynamic transform.

See: newTransformConfigParameter smart constructor.

Constructors

TransformConfigParameter' 

Fields

  • isOptional :: Maybe Bool

    Specifies whether the parameter is optional or not in the config file of the dynamic transform.

  • listType :: Maybe ParamType

    Specifies the list type of the parameter in the config file of the dynamic transform.

  • validationMessage :: Maybe Text

    Specifies the validation message in the config file of the dynamic transform.

  • validationRule :: Maybe Text

    Specifies the validation rule in the config file of the dynamic transform.

  • value :: Maybe [Text]

    Specifies the value of the parameter in the config file of the dynamic transform.

  • name :: Text

    Specifies the name of the parameter in the config file of the dynamic transform.

  • type' :: ParamType

    Specifies the parameter type in the config file of the dynamic transform.

Instances

Instances details
FromJSON TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

ToJSON TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

Generic TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

Associated Types

type Rep TransformConfigParameter :: Type -> Type #

Read TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

Show TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

NFData TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

Eq TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

Hashable TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

type Rep TransformConfigParameter Source # 
Instance details

Defined in Amazonka.Glue.Types.TransformConfigParameter

type Rep TransformConfigParameter = D1 ('MetaData "TransformConfigParameter" "Amazonka.Glue.Types.TransformConfigParameter" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "TransformConfigParameter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "isOptional") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "listType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ParamType)) :*: S1 ('MetaSel ('Just "validationMessage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "validationRule") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ParamType)))))

newTransformConfigParameter Source #

Create a value of TransformConfigParameter 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:isOptional:TransformConfigParameter', transformConfigParameter_isOptional - Specifies whether the parameter is optional or not in the config file of the dynamic transform.

$sel:listType:TransformConfigParameter', transformConfigParameter_listType - Specifies the list type of the parameter in the config file of the dynamic transform.

$sel:validationMessage:TransformConfigParameter', transformConfigParameter_validationMessage - Specifies the validation message in the config file of the dynamic transform.

$sel:validationRule:TransformConfigParameter', transformConfigParameter_validationRule - Specifies the validation rule in the config file of the dynamic transform.

$sel:value:TransformConfigParameter', transformConfigParameter_value - Specifies the value of the parameter in the config file of the dynamic transform.

$sel:name:TransformConfigParameter', transformConfigParameter_name - Specifies the name of the parameter in the config file of the dynamic transform.

$sel:type':TransformConfigParameter', transformConfigParameter_type - Specifies the parameter type in the config file of the dynamic transform.

transformConfigParameter_isOptional :: Lens' TransformConfigParameter (Maybe Bool) Source #

Specifies whether the parameter is optional or not in the config file of the dynamic transform.

transformConfigParameter_listType :: Lens' TransformConfigParameter (Maybe ParamType) Source #

Specifies the list type of the parameter in the config file of the dynamic transform.

transformConfigParameter_validationMessage :: Lens' TransformConfigParameter (Maybe Text) Source #

Specifies the validation message in the config file of the dynamic transform.

transformConfigParameter_validationRule :: Lens' TransformConfigParameter (Maybe Text) Source #

Specifies the validation rule in the config file of the dynamic transform.

transformConfigParameter_value :: Lens' TransformConfigParameter (Maybe [Text]) Source #

Specifies the value of the parameter in the config file of the dynamic transform.

transformConfigParameter_name :: Lens' TransformConfigParameter Text Source #

Specifies the name of the parameter in the config file of the dynamic transform.

transformConfigParameter_type :: Lens' TransformConfigParameter ParamType Source #

Specifies the parameter type in the config file of the dynamic transform.