Interface CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
@Stability(Stable)
public static interface CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
ServiceNow OAuth authorization 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;
ServiceNowAuthorizationConfigProperty serviceNowAuthorizationConfigProperty = ServiceNowAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientName("clientName")
.clientSecret("clientSecret")
.exchangeParameters(exchangeParameters)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServicePropsMixin.ServiceNowAuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOAuthClientCredentials
OAuth client credentials.Returns union: either
IResolvableorCfnServicePropsMixin.OAuthClientDetailsProperty- See Also:
-
builder
@Stability(Stable) static CfnServicePropsMixin.ServiceNowAuthorizationConfigProperty.Builder builder()
-