Interface CfnServicePropsMixin.DynatraceServiceDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.DynatraceServiceDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
@Stability(Stable)
public static interface CfnServicePropsMixin.DynatraceServiceDetailsProperty
extends software.amazon.jsii.JsiiSerializable
Dynatrace 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;
DynatraceServiceDetailsProperty dynatraceServiceDetailsProperty = DynatraceServiceDetailsProperty.builder()
.accountUrn("accountUrn")
.authorizationConfig(DynatraceAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientName("clientName")
.clientSecret("clientSecret")
.exchangeParameters(exchangeParameters)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.DynatraceServiceDetailsPropertystatic final classAn implementation forCfnServicePropsMixin.DynatraceServiceDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountUrn
Dynatrace resource account URN.- See Also:
-
getAuthorizationConfig
Dynatrace OAuth authorization configuration.Returns union: either
IResolvableorCfnServicePropsMixin.DynatraceAuthorizationConfigProperty- See Also:
-
builder
-