Class: Aws::Appflow::Types::SAPODataConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SAPODataConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass SAPODataConnectorProfileCredentials data as a hash:
{
basic_auth_credentials: {
username: "Username", # required
password: "Password", # required
},
o_auth_credentials: {
client_id: "ClientId", # required
client_secret: "ClientSecret", # required
access_token: "AccessToken",
refresh_token: "RefreshToken",
o_auth_request: {
auth_code: "AuthCode",
redirect_uri: "RedirectUri",
},
},
}
The connector-specific profile credentials required when using SAPOData.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#basic_auth_credentials ⇒ Types::BasicAuthCredentials
The SAPOData basic authentication credentials.
-
#o_auth_credentials ⇒ Types::OAuthCredentials
The SAPOData OAuth type authentication credentials.
Instance Attribute Details
#basic_auth_credentials ⇒ Types::BasicAuthCredentials
The SAPOData basic authentication credentials.
5329 5330 5331 5332 5333 5334 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5329 class SAPODataConnectorProfileCredentials < Struct.new( :basic_auth_credentials, :o_auth_credentials) SENSITIVE = [] include Aws::Structure end |
#o_auth_credentials ⇒ Types::OAuthCredentials
The SAPOData OAuth type authentication credentials.
5329 5330 5331 5332 5333 5334 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5329 class SAPODataConnectorProfileCredentials < Struct.new( :basic_auth_credentials, :o_auth_credentials) SENSITIVE = [] include Aws::Structure end |