interface ServiceNowServiceDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.ServiceNowServiceDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_ServiceNowServiceDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.ServiceNowServiceDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.ServiceNowServiceDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » 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/cfn-property-mixins';
declare const exchangeParameters: any;
const serviceNowServiceDetailsProperty: devopsagent.CfnServicePropsMixin.ServiceNowServiceDetailsProperty = {
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
},
},
instanceUrl: 'instanceUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | Service | ServiceNow OAuth authorization configuration. |
| instance | string | ServiceNow instance URL. |
authorizationConfig?
Type:
IResolvable | Service
(optional)
ServiceNow OAuth authorization configuration.
instanceUrl?
Type:
string
(optional)
ServiceNow instance URL.

.NET
Go
Java
Python
TypeScript