Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-servicenowauthorizationconfig.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-servicenowauthorizationconfig.html#cfn-devopsagent-service-servicenowauthorizationconfig-oauthclientcredentials

Type union: either IResolvable or CfnService.IOAuthClientDetailsProperty

Back to top Generated by DocFX