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)


2643
2644
2645
2646
2647
2648
2649
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2643

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.



2643
2644
2645
2646
2647
2648
2649
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2643

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)


2643
2644
2645
2646
2647
2648
2649
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2643

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