interface ServiceNowConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.ServiceNowConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_ServiceNowConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.ServiceNowConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.ServiceNowConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » ServiceNowConnectorProfileCredentialsProperty |
The connector-specific profile credentials required when using ServiceNow.
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 serviceNowConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.ServiceNowConnectorProfileCredentialsProperty = {
oAuth2Credentials: {
accessToken: 'accessToken',
clientId: 'clientId',
clientSecret: 'clientSecret',
oAuthRequest: {
authCode: 'authCode',
redirectUri: 'redirectUri',
},
refreshToken: 'refreshToken',
},
password: 'password',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| o | IResolvable | OAuth2 | The OAuth 2.0 credentials required to authenticate the user. |
| password? | string | The password that corresponds to the user name. |
| username? | string | The name of the user. |
oAuth2Credentials?
Type:
IResolvable | OAuth2
(optional)
The OAuth 2.0 credentials required to authenticate the user.
password?
Type:
string
(optional)
The password that corresponds to the user name.
username?
Type:
string
(optional)
The name of the user.

.NET
Go
Java
Python
TypeScript