Interface CfnService.DynatraceAuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.DynatraceAuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.DynatraceAuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
Dynatrace 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.services.devopsagent.*;
Object exchangeParameters;
DynatraceAuthorizationConfigProperty dynatraceAuthorizationConfigProperty = DynatraceAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientSecret("clientSecret")
// the properties below are optional
.clientName("clientName")
.exchangeParameters(exchangeParameters)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.DynatraceAuthorizationConfigPropertystatic final classAn implementation forCfnService.DynatraceAuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOAuthClientCredentials
OAuth client credentials.Returns union: either
IResolvableorCfnService.OAuthClientDetailsProperty- See Also:
-
builder
-