Class: Aws::Appflow::Types::SalesforceConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SalesforceConnectorProfileCredentials
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
The connector-specific profile credentials required when using Salesforce.
Constant Summary collapse
- SENSITIVE =
[:access_token, :client_credentials_arn]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The credentials used to access protected Salesforce resources.
-
#client_credentials_arn ⇒ String
The secret manager ARN, which contains the client ID and client secret of the connected app.
-
#o_auth_request ⇒ Types::ConnectorOAuthRequest
The OAuth requirement needed to request security tokens from the connector endpoint.
-
#refresh_token ⇒ String
The credentials used to acquire new access tokens.
Instance Attribute Details
#access_token ⇒ String
The credentials used to access protected Salesforce resources.
4015 4016 4017 4018 4019 4020 4021 4022 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015 class SalesforceConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request, :client_credentials_arn) SENSITIVE = [:access_token, :client_credentials_arn] include Aws::Structure end |
#client_credentials_arn ⇒ String
The secret manager ARN, which contains the client ID and client secret of the connected app.
4015 4016 4017 4018 4019 4020 4021 4022 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015 class SalesforceConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request, :client_credentials_arn) SENSITIVE = [:access_token, :client_credentials_arn] include Aws::Structure end |
#o_auth_request ⇒ Types::ConnectorOAuthRequest
The OAuth requirement needed to request security tokens from the connector endpoint.
4015 4016 4017 4018 4019 4020 4021 4022 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015 class SalesforceConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request, :client_credentials_arn) SENSITIVE = [:access_token, :client_credentials_arn] include Aws::Structure end |
#refresh_token ⇒ String
The credentials used to acquire new access tokens.
4015 4016 4017 4018 4019 4020 4021 4022 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4015 class SalesforceConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request, :client_credentials_arn) SENSITIVE = [:access_token, :client_credentials_arn] include Aws::Structure end |