interface ServiceNowConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_ServiceNowConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty |
Python | aws_cdk.aws_appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty |
TypeScript | aws-cdk-lib » aws_appflow » CfnConnectorProfile » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const serviceNowConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.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