Interface CfnService.PagerDutyDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.PagerDutyDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.PagerDutyDetailsProperty
extends software.amazon.jsii.JsiiSerializable
PagerDuty 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;
PagerDutyDetailsProperty pagerDutyDetailsProperty = PagerDutyDetailsProperty.builder()
.authorizationConfig(PagerDutyAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientSecret("clientSecret")
// the properties below are optional
.clientName("clientName")
.exchangeParameters(exchangeParameters)
.build())
.build())
.scopes(List.of("scopes"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.PagerDutyDetailsPropertystatic final classAn implementation forCfnService.PagerDutyDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()PagerDuty OAuth authorization configuration.PagerDuty scopes.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAuthorizationConfig
PagerDuty OAuth authorization configuration.Returns union: either
IResolvableorCfnService.PagerDutyAuthorizationConfigProperty- See Also:
-
getScopes
PagerDuty scopes.- See Also:
-
builder
-