interface NewRelicApiKeyConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.NewRelicApiKeyConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_NewRelicApiKeyConfigProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.NewRelicApiKeyConfigProperty |
Python | aws_cdk.aws_devopsagent.CfnService.NewRelicApiKeyConfigProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » NewRelicApiKeyConfigProperty |
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 { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const newRelicApiKeyConfigProperty: devopsagent.CfnService.NewRelicApiKeyConfigProperty = {
accountId: 'accountId',
apiKey: 'apiKey',
region: 'region',
// the properties below are optional
alertPolicyIds: ['alertPolicyIds'],
applicationIds: ['applicationIds'],
entityGuids: ['entityGuids'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | New Relic Account ID. |
| api | string | New Relic User API Key. |
| region | string | New Relic region. |
| alert | string[] | List of alert policy IDs. |
| application | string[] | List of monitored APM application IDs. |
| entity | string[] | List of globally unique IDs for New Relic resources. |
accountId
Type:
string
New Relic Account ID.
apiKey
Type:
string
New Relic User API Key.
region
Type:
string
New Relic region.
alertPolicyIds?
Type:
string[]
(optional)
List of alert policy IDs.
applicationIds?
Type:
string[]
(optional)
List of monitored APM application IDs.
entityGuids?
Type:
string[]
(optional)
List of globally unique IDs for New Relic resources.

.NET
Go
Java
Python
TypeScript