Show / Hide Table of Contents

Class CfnService.ServiceNowServiceDetailsProperty

ServiceNow service configuration.

Inheritance
object
CfnService.ServiceNowServiceDetailsProperty
Implements
CfnService.IServiceNowServiceDetailsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-servicenowservicedetails.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-service-servicenowservicedetails.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 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

object

Remarks

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

Type union: either IResolvable or CfnService.IServiceNowAuthorizationConfigProperty

InstanceUrl

ServiceNow instance URL.

public string InstanceUrl { get; set; }
Property Value

string

Remarks

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

Implements

CfnService.IServiceNowServiceDetailsProperty
Back to top Generated by DocFX