Interface CfnService.NewRelicApiKeyConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.NewRelicApiKeyConfigProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.NewRelicApiKeyConfigProperty
extends software.amazon.jsii.JsiiSerializable
New Relic API key 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.*;
NewRelicApiKeyConfigProperty newRelicApiKeyConfigProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.NewRelicApiKeyConfigPropertystatic final classAn implementation forCfnService.NewRelicApiKeyConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()New Relic Account ID.List of alert policy IDs.New Relic User API Key.List of monitored APM application IDs.List of globally unique IDs for New Relic resources.New Relic region.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountId
New Relic Account ID.- See Also:
-
getApiKey
New Relic User API Key.- See Also:
-
getRegion
New Relic region.- See Also:
-
getAlertPolicyIds
List of alert policy IDs.- See Also:
-
getApplicationIds
List of monitored APM application IDs.- See Also:
-
getEntityGuids
List of globally unique IDs for New Relic resources.- See Also:
-
builder
-