Class: Aws::Appflow::Types::HoneycodeConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::HoneycodeConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass HoneycodeConnectorProfileCredentials data as a hash:
{
access_token: "AccessToken",
refresh_token: "RefreshToken",
o_auth_request: {
auth_code: "AuthCode",
redirect_uri: "RedirectUri",
},
}
The connector-specific credentials required when using Amazon Honeycode.
Constant Summary collapse
- SENSITIVE =
[:access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The credentials used to access protected Amazon Honeycode resources.
-
#o_auth_request ⇒ Types::ConnectorOAuthRequest
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
-
#refresh_token ⇒ String
The credentials used to acquire new access tokens.
Instance Attribute Details
#access_token ⇒ String
The credentials used to access protected Amazon Honeycode resources.
4066 4067 4068 4069 4070 4071 4072 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4066 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end |
#o_auth_request ⇒ Types::ConnectorOAuthRequest
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
4066 4067 4068 4069 4070 4071 4072 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4066 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end |
#refresh_token ⇒ String
The credentials used to acquire new access tokens.
4066 4067 4068 4069 4070 4071 4072 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4066 class HoneycodeConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request) SENSITIVE = [:access_token] include Aws::Structure end |