Class: Aws::Appflow::Types::HoneycodeConnectorProfileCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb

Overview

The connector-specific credentials required when using Amazon Honeycode.

Constant Summary collapse

SENSITIVE =
[:access_token]

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The credentials used to access protected Amazon Honeycode resources.

Returns:

  • (String)


2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2809

class HoneycodeConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request)
  SENSITIVE = [:access_token]
  include Aws::Structure
end

#o_auth_requestTypes::ConnectorOAuthRequest

Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.



2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2809

class HoneycodeConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request)
  SENSITIVE = [:access_token]
  include Aws::Structure
end

#refresh_tokenString

The credentials used to acquire new access tokens.

Returns:

  • (String)


2809
2810
2811
2812
2813
2814
2815
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2809

class HoneycodeConnectorProfileCredentials < Struct.new(
  :access_token,
  :refresh_token,
  :o_auth_request)
  SENSITIVE = [:access_token]
  include Aws::Structure
end