Interface CfnService.NewRelicAuthorizationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.NewRelicAuthorizationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.NewRelicAuthorizationConfigProperty
extends software.amazon.jsii.JsiiSerializable
New Relic 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.*;
NewRelicAuthorizationConfigProperty newRelicAuthorizationConfigProperty = NewRelicAuthorizationConfigProperty.builder()
.apiKey(NewRelicApiKeyConfigProperty.builder()
.accountId("accountId")
.apiKey("apiKey")
.region("region")
// the properties below are optional
.alertPolicyIds(List.of("alertPolicyIds"))
.applicationIds(List.of("applicationIds"))
.entityGuids(List.of("entityGuids"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.NewRelicAuthorizationConfigPropertystatic final classAn implementation forCfnService.NewRelicAuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKey
New Relic API key configuration.Returns union: either
IResolvableorCfnService.NewRelicApiKeyConfigProperty- See Also:
-
builder
-