Class: Aws::Appflow::Types::ZendeskConnectorProfileCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ZendeskConnectorProfileCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The connector-specific profile credentials required when using Zendesk.
Constant Summary collapse
- SENSITIVE =
[:client_secret, :access_token]
Instance Attribute Summary collapse
-
#access_token ⇒ String
The credentials used to access protected Zendesk resources.
-
#client_id ⇒ String
The identifier for the desired client.
-
#client_secret ⇒ String
The client secret used by the OAuth client to authenticate to the authorization server.
-
#o_auth_request ⇒ Types::ConnectorOAuthRequest
The OAuth requirement needed to request security tokens from the connector endpoint.
Instance Attribute Details
#access_token ⇒ String
The credentials used to access protected Zendesk resources.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-appflow/types.rb', line 5942 class ZendeskConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end |
#client_id ⇒ String
The identifier for the desired client.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-appflow/types.rb', line 5942 class ZendeskConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end |
#client_secret ⇒ String
The client secret used by the OAuth client to authenticate to the authorization server.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-appflow/types.rb', line 5942 class ZendeskConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end |
#o_auth_request ⇒ Types::ConnectorOAuthRequest
The OAuth requirement needed to request security tokens from the connector endpoint.
5942 5943 5944 5945 5946 5947 5948 5949 |
# File 'lib/aws-sdk-appflow/types.rb', line 5942 class ZendeskConnectorProfileCredentials < Struct.new( :client_id, :client_secret, :access_token, :o_auth_request) SENSITIVE = [:client_secret, :access_token] include Aws::Structure end |