Interface CfnService.ServiceNowServiceDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.ServiceNowServiceDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.ServiceNowServiceDetailsProperty
extends software.amazon.jsii.JsiiSerializable
ServiceNow service configuration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.devopsagent.*;
Object exchangeParameters;
ServiceNowServiceDetailsProperty serviceNowServiceDetailsProperty = ServiceNowServiceDetailsProperty.builder()
.instanceUrl("instanceUrl")
// the properties below are optional
.authorizationConfig(ServiceNowAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientSecret("clientSecret")
// the properties below are optional
.clientName("clientName")
.exchangeParameters(exchangeParameters)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.ServiceNowServiceDetailsPropertystatic final classAn implementation forCfnService.ServiceNowServiceDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceUrl
ServiceNow instance URL.- See Also:
-
getAuthorizationConfig
ServiceNow OAuth authorization configuration.Returns union: either
IResolvableorCfnService.ServiceNowAuthorizationConfigProperty- See Also:
-
builder
-