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

Description

 
Synopsis

Documentation

data OAuth2Defaults Source #

Contains the default values required for OAuth 2.0 authentication.

See: newOAuth2Defaults smart constructor.

Constructors

OAuth2Defaults' 

Fields

Instances

Instances details
FromJSON OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

Generic OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

Associated Types

type Rep OAuth2Defaults :: Type -> Type #

Read OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

Show OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

NFData OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

Methods

rnf :: OAuth2Defaults -> () #

Eq OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

Hashable OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

type Rep OAuth2Defaults Source # 
Instance details

Defined in Amazonka.AppFlow.Types.OAuth2Defaults

type Rep OAuth2Defaults = D1 ('MetaData "OAuth2Defaults" "Amazonka.AppFlow.Types.OAuth2Defaults" "amazonka-appflow-2.0-3aJWKTszi6ZKDtrkFSqVAB" 'False) (C1 ('MetaCons "OAuth2Defaults'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "authCodeUrls") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "oauth2CustomProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [OAuth2CustomParameter]))) :*: (S1 ('MetaSel ('Just "oauth2GrantTypesSupported") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [OAuth2GrantType])) :*: (S1 ('MetaSel ('Just "oauthScopes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "tokenUrls") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))))))

newOAuth2Defaults :: OAuth2Defaults Source #

Create a value of OAuth2Defaults 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:authCodeUrls:OAuth2Defaults', oAuth2Defaults_authCodeUrls - Auth code URLs that can be used for OAuth 2.0 authentication.

$sel:oauth2CustomProperties:OAuth2Defaults', oAuth2Defaults_oauth2CustomProperties - List of custom parameters required for OAuth 2.0 authentication.

$sel:oauth2GrantTypesSupported:OAuth2Defaults', oAuth2Defaults_oauth2GrantTypesSupported - OAuth 2.0 grant types supported by the connector.

$sel:oauthScopes:OAuth2Defaults', oAuth2Defaults_oauthScopes - OAuth 2.0 scopes that the connector supports.

$sel:tokenUrls:OAuth2Defaults', oAuth2Defaults_tokenUrls - Token URLs that can be used for OAuth 2.0 authentication.

oAuth2Defaults_authCodeUrls :: Lens' OAuth2Defaults (Maybe [Text]) Source #

Auth code URLs that can be used for OAuth 2.0 authentication.

oAuth2Defaults_oauth2CustomProperties :: Lens' OAuth2Defaults (Maybe [OAuth2CustomParameter]) Source #

List of custom parameters required for OAuth 2.0 authentication.

oAuth2Defaults_oauth2GrantTypesSupported :: Lens' OAuth2Defaults (Maybe [OAuth2GrantType]) Source #

OAuth 2.0 grant types supported by the connector.

oAuth2Defaults_oauthScopes :: Lens' OAuth2Defaults (Maybe [Text]) Source #

OAuth 2.0 scopes that the connector supports.

oAuth2Defaults_tokenUrls :: Lens' OAuth2Defaults (Maybe [Text]) Source #

Token URLs that can be used for OAuth 2.0 authentication.