interface ServiceNowAuthorizationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_ServiceNowAuthorizationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » ServiceNowAuthorizationConfigProperty |
ServiceNow OAuth authorization 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 serviceNowAuthorizationConfigProperty: devopsagent.CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty = {
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| o | IResolvable | OAuth | OAuth client credentials. |
oAuthClientCredentials?
Type:
IResolvable | OAuth
(optional)
OAuth client credentials.

.NET
Go
Java
Python
TypeScript