Class CfnService.ServiceNowServiceDetailsProperty
ServiceNow service configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnService.ServiceNowServiceDetailsProperty : CfnService.IServiceNowServiceDetailsProperty
Syntax (vb)
Public Class CfnService.ServiceNowServiceDetailsProperty Implements CfnService.IServiceNowServiceDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var exchangeParameters;
var serviceNowServiceDetailsProperty = new ServiceNowServiceDetailsProperty {
InstanceUrl = "instanceUrl",
// the properties below are optional
AuthorizationConfig = new ServiceNowAuthorizationConfigProperty {
OAuthClientCredentials = new OAuthClientDetailsProperty {
ClientId = "clientId",
ClientSecret = "clientSecret",
// the properties below are optional
ClientName = "clientName",
ExchangeParameters = exchangeParameters
}
}
};
Synopsis
Constructors
| ServiceNowServiceDetailsProperty() | ServiceNow service configuration. |
Properties
| AuthorizationConfig | ServiceNow OAuth authorization configuration. |
| InstanceUrl | ServiceNow instance URL. |
Constructors
ServiceNowServiceDetailsProperty()
ServiceNow service configuration.
public ServiceNowServiceDetailsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var exchangeParameters;
var serviceNowServiceDetailsProperty = new ServiceNowServiceDetailsProperty {
InstanceUrl = "instanceUrl",
// the properties below are optional
AuthorizationConfig = new ServiceNowAuthorizationConfigProperty {
OAuthClientCredentials = new OAuthClientDetailsProperty {
ClientId = "clientId",
ClientSecret = "clientSecret",
// the properties below are optional
ClientName = "clientName",
ExchangeParameters = exchangeParameters
}
}
};
Properties
AuthorizationConfig
ServiceNow OAuth authorization configuration.
public object? AuthorizationConfig { get; set; }
Property Value
Remarks
InstanceUrl
ServiceNow instance URL.
public string InstanceUrl { get; set; }