Interface CfnServicePropsMixin.NewRelicApiKeyConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServicePropsMixin.NewRelicApiKeyConfigProperty.Jsii$Proxy
Enclosing class:
CfnServicePropsMixin

@Stability(Stable) public static interface CfnServicePropsMixin.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.cfnpropertymixins.services.devopsagent.*;
 NewRelicApiKeyConfigProperty newRelicApiKeyConfigProperty = NewRelicApiKeyConfigProperty.builder()
         .accountId("accountId")
         .alertPolicyIds(List.of("alertPolicyIds"))
         .apiKey("apiKey")
         .applicationIds(List.of("applicationIds"))
         .entityGuids(List.of("entityGuids"))
         .region("region")
         .build();
 

See Also: