interface ServiceNowConnectorProfileCredentialsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty | 
|  Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty | 
|  Python | aws_cdk.aws_appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty | 
|  TypeScript | @aws-cdk/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 * as appflow from '@aws-cdk/aws-appflow';
const serviceNowConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty = {
  password: 'password',
  username: 'username',
};
Properties
| Name | Type | Description | 
|---|---|---|
| password | string | The password that corresponds to the user name. | 
| username | string | The name of the user. | 
password
Type:
string
The password that corresponds to the user name.
username
Type:
string
The name of the user.
