Interface CfnServicePropsMixin.ServiceNowServiceDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.ServiceNowServiceDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
@Stability(Stable)
public static interface CfnServicePropsMixin.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.cfnpropertymixins.services.devopsagent.*;
Object exchangeParameters;
ServiceNowServiceDetailsProperty serviceNowServiceDetailsProperty = ServiceNowServiceDetailsProperty.builder()
.authorizationConfig(ServiceNowAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientName("clientName")
.clientSecret("clientSecret")
.exchangeParameters(exchangeParameters)
.build())
.build())
.instanceUrl("instanceUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.ServiceNowServiceDetailsPropertystatic final classAn implementation forCfnServicePropsMixin.ServiceNowServiceDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationConfig
ServiceNow OAuth authorization configuration.Returns union: either
IResolvableorCfnServicePropsMixin.ServiceNowAuthorizationConfigProperty- See Also:
-
getInstanceUrl
ServiceNow instance URL.- See Also:
-
builder
-