Interface CfnService.IServiceNowAuthorizationConfigProperty
ServiceNow OAuth authorization configuration.
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnService.IServiceNowAuthorizationConfigProperty
Syntax (vb)
Public Interface CfnService.IServiceNowAuthorizationConfigProperty
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 serviceNowAuthorizationConfigProperty = new ServiceNowAuthorizationConfigProperty {
OAuthClientCredentials = new OAuthClientDetailsProperty {
ClientId = "clientId",
ClientSecret = "clientSecret",
// the properties below are optional
ClientName = "clientName",
ExchangeParameters = exchangeParameters
}
};
Synopsis
Properties
| OAuthClientCredentials | OAuth client credentials. |
Properties
OAuthClientCredentials
OAuth client credentials.
object? OAuthClientCredentials { get; }