Class: Aws::Appflow::Types::CustomConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::CustomConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific profile credentials that are required when using the custom connector.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_key ⇒ Types::ApiKeyCredentials
The API keys required for the authentication of the user.
-
#authentication_type ⇒ String
The authentication type that the custom connector uses for authenticating while creating a connector profile.
-
#basic ⇒ Types::BasicAuthCredentials
The basic credentials that are required for the authentication of the user.
-
#custom ⇒ Types::CustomAuthCredentials
If the connector uses the custom authentication mechanism, this holds the required credentials.
-
#oauth2 ⇒ Types::OAuth2Credentials
The OAuth 2.0 credentials required for the authentication of the user.
Instance Attribute Details
#api_key ⇒ Types::ApiKeyCredentials
The API keys required for the authentication of the user.
1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'lib/aws-sdk-appflow/types.rb', line 1539 class CustomConnectorProfileCredentials < Struct.new( :authentication_type, :basic, :oauth2, :api_key, :custom) SENSITIVE = [] include Aws::Structure end |
#authentication_type ⇒ String
The authentication type that the custom connector uses for authenticating while creating a connector profile.
1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'lib/aws-sdk-appflow/types.rb', line 1539 class CustomConnectorProfileCredentials < Struct.new( :authentication_type, :basic, :oauth2, :api_key, :custom) SENSITIVE = [] include Aws::Structure end |
#basic ⇒ Types::BasicAuthCredentials
The basic credentials that are required for the authentication of the user.
1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'lib/aws-sdk-appflow/types.rb', line 1539 class CustomConnectorProfileCredentials < Struct.new( :authentication_type, :basic, :oauth2, :api_key, :custom) SENSITIVE = [] include Aws::Structure end |
#custom ⇒ Types::CustomAuthCredentials
If the connector uses the custom authentication mechanism, this holds the required credentials.
1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'lib/aws-sdk-appflow/types.rb', line 1539 class CustomConnectorProfileCredentials < Struct.new( :authentication_type, :basic, :oauth2, :api_key, :custom) SENSITIVE = [] include Aws::Structure end |
#oauth2 ⇒ Types::OAuth2Credentials
The OAuth 2.0 credentials required for the authentication of the user.
1539 1540 1541 1542 1543 1544 1545 1546 1547 |
# File 'lib/aws-sdk-appflow/types.rb', line 1539 class CustomConnectorProfileCredentials < Struct.new( :authentication_type, :basic, :oauth2, :api_key, :custom) SENSITIVE = [] include Aws::Structure end |