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

.NET
Go
Java
Python
TypeScript