You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Appflow::Types::ZendeskConnectorProfileCredentials

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ZendeskConnectorProfileCredentials as input to an Aws::Client method, you can use a vanilla Hash:

{
  client_id: "ClientId", # required
  client_secret: "ClientSecret", # required
  access_token: "AccessToken",
  o_auth_request: {
    auth_code: "AuthCode",
    redirect_uri: "RedirectUri",
  },
}

The connector-specific profile credentials required when using Zendesk.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The credentials used to access protected Zendesk resources.

Returns:

  • (String)

    The credentials used to access protected Zendesk resources.

#client_idString

The identifier for the desired client.

Returns:

  • (String)

    The identifier for the desired client.

#client_secretString

The client secret used by the OAuth client to authenticate to the authorization server.

Returns:

  • (String)

    The client secret used by the OAuth client to authenticate to the authorization server.

#o_auth_requestTypes::ConnectorOAuthRequest

The OAuth requirement needed to request security tokens from the connector endpoint.

Returns: