interface GoogleAnalyticsConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.GoogleAnalyticsConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_GoogleAnalyticsConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.GoogleAnalyticsConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.GoogleAnalyticsConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » GoogleAnalyticsConnectorProfileCredentialsProperty |
The connector-specific profile credentials required by Google Analytics.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const googleAnalyticsConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.GoogleAnalyticsConnectorProfileCredentialsProperty = {
accessToken: 'accessToken',
clientId: 'clientId',
clientSecret: 'clientSecret',
connectorOAuthRequest: {
authCode: 'authCode',
redirectUri: 'redirectUri',
},
refreshToken: 'refreshToken',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The credentials used to access protected Google Analytics resources. |
| client | string | The identifier for the desired client. |
| client | string | The client secret used by the OAuth client to authenticate to the authorization server. |
| connector | IResolvable | Connector | Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. |
| refresh | string | The credentials used to acquire new access tokens. |
accessToken?
Type:
string
(optional)
The credentials used to access protected Google Analytics resources.
clientId?
Type:
string
(optional)
The identifier for the desired client.
clientSecret?
Type:
string
(optional)
The client secret used by the OAuth client to authenticate to the authorization server.
connectorOAuthRequest?
Type:
IResolvable | Connector
(optional)
Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
refreshToken?
Type:
string
(optional)
The credentials used to acquire new access tokens.
This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.

.NET
Go
Java
Python
TypeScript