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
Note:
When making an API call, you may pass SalesforceConnectorProfileCredentials data as a hash:
{
access_token: "AccessToken",
refresh_token: "RefreshToken",
o_auth_request: {
auth_code: "AuthCode",
redirect_uri: "RedirectUri",
},
client_credentials_arn: "ClientCredentialsArn",
}
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.
5528 5529 5530 5531 5532 5533 5534 5535 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5528 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.
5528 5529 5530 5531 5532 5533 5534 5535 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5528 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.
5528 5529 5530 5531 5532 5533 5534 5535 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5528 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.
5528 5529 5530 5531 5532 5533 5534 5535 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5528 class SalesforceConnectorProfileCredentials < Struct.new( :access_token, :refresh_token, :o_auth_request, :client_credentials_arn) SENSITIVE = [:access_token, :client_credentials_arn] include Aws::Structure end |