interface SlackConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.SlackConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_SlackConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.SlackConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.SlackConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » SlackConnectorProfileCredentialsProperty |
The connector-specific profile credentials required when using Slack.
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 slackConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.SlackConnectorProfileCredentialsProperty = {
accessToken: 'accessToken',
clientId: 'clientId',
clientSecret: 'clientSecret',
connectorOAuthRequest: {
authCode: 'authCode',
redirectUri: 'redirectUri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The credentials used to access protected Slack resources. |
| client | string | The identifier for the 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. |
accessToken?
Type:
string
(optional)
The credentials used to access protected Slack resources.
clientId?
Type:
string
(optional)
The identifier for the 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.

.NET
Go
Java
Python
TypeScript