interface ServiceNowServiceDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.ServiceNowServiceDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_ServiceNowServiceDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.ServiceNowServiceDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.ServiceNowServiceDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » ServiceNowServiceDetailsProperty |
ServiceNow service configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
declare const exchangeParameters: any;
const serviceNowServiceDetailsProperty: devopsagent.CfnService.ServiceNowServiceDetailsProperty = {
instanceUrl: 'instanceUrl',
// the properties below are optional
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientSecret: 'clientSecret',
// the properties below are optional
clientName: 'clientName',
exchangeParameters: exchangeParameters,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | ServiceNow instance URL. |
| authorization | IResolvable | Service | ServiceNow OAuth authorization configuration. |
instanceUrl
Type:
string
ServiceNow instance URL.
authorizationConfig?
Type:
IResolvable | Service
(optional)
ServiceNow OAuth authorization configuration.

.NET
Go
Java
Python
TypeScript