amazonka-appflow-2.0: Amazon Appflow 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.AppFlow.Types.AuthParameter

Description

 
Synopsis

Documentation

data AuthParameter Source #

Information about required authentication parameters.

See: newAuthParameter smart constructor.

Constructors

AuthParameter' 

Fields

Instances

Instances details
FromJSON AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

Generic AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

Associated Types

type Rep AuthParameter :: Type -> Type #

Read AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

Show AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

NFData AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

Methods

rnf :: AuthParameter -> () #

Eq AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

Hashable AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

type Rep AuthParameter Source # 
Instance details

Defined in Amazonka.AppFlow.Types.AuthParameter

type Rep AuthParameter = D1 ('MetaData "AuthParameter" "Amazonka.AppFlow.Types.AuthParameter" "amazonka-appflow-2.0-3aJWKTszi6ZKDtrkFSqVAB" 'False) (C1 ('MetaCons "AuthParameter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "connectorSuppliedValues") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "isRequired") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "isSensitiveField") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "label") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newAuthParameter :: AuthParameter Source #

Create a value of AuthParameter 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:connectorSuppliedValues:AuthParameter', authParameter_connectorSuppliedValues - Contains default values for this authentication parameter that are supplied by the connector.

$sel:description:AuthParameter', authParameter_description - A description about the authentication parameter.

$sel:isRequired:AuthParameter', authParameter_isRequired - Indicates whether this authentication parameter is required.

$sel:isSensitiveField:AuthParameter', authParameter_isSensitiveField - Indicates whether this authentication parameter is a sensitive field.

$sel:key:AuthParameter', authParameter_key - The authentication key required to authenticate with the connector.

$sel:label:AuthParameter', authParameter_label - Label used for authentication parameter.

authParameter_connectorSuppliedValues :: Lens' AuthParameter (Maybe [Text]) Source #

Contains default values for this authentication parameter that are supplied by the connector.

authParameter_description :: Lens' AuthParameter (Maybe Text) Source #

A description about the authentication parameter.

authParameter_isRequired :: Lens' AuthParameter (Maybe Bool) Source #

Indicates whether this authentication parameter is required.

authParameter_isSensitiveField :: Lens' AuthParameter (Maybe Bool) Source #

Indicates whether this authentication parameter is a sensitive field.

authParameter_key :: Lens' AuthParameter (Maybe Text) Source #

The authentication key required to authenticate with the connector.

authParameter_label :: Lens' AuthParameter (Maybe Text) Source #

Label used for authentication parameter.