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

Class: Aws::Appflow::Types::GoogleAnalyticsConnectorProfileCredentials

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

Overview

Note:

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

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

The connector-specific profile credentials required by Google Analytics.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#access_tokenString

The credentials used to access protected Google Analytics resources.

Returns:

  • (String)

    The credentials used to access protected Google Analytics 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:

#refresh_tokenString

The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.

Returns:

  • (String)

    The credentials used to acquire new access tokens.