interface RelatedAnomaly
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruNewRecommendationCreated.RelatedAnomaly |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruNewRecommendationCreated_RelatedAnomaly |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruNewRecommendationCreated.RelatedAnomaly |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruNewRecommendationCreated.RelatedAnomaly |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruNewRecommendationCreated ยป RelatedAnomaly |
Type definition for RelatedAnomaly.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as devopsguru_events } from '@aws-cdk/mixins-preview/aws-devopsguru';
const relatedAnomaly: devopsguru_events.DevOpsGuruNewRecommendationCreated.RelatedAnomaly = {
associatedResourceArns: ['associatedResourceArns'],
resources: [{
name: ['name'],
type: ['type'],
}],
sourceDetails: [{
cloudWatchMetrics: [{
metricName: ['metricName'],
namespace: ['namespace'],
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| associated | string[] | associatedResourceArns property. |
| resources? | Anomaly[] | resources property. |
| source | Related[] | sourceDetails property. |
associatedResourceArns?
Type:
string[]
(optional, default: Do not filter on this field)
associatedResourceArns property.
Specify an array of string values to match this event if the actual value of associatedResourceArns is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resources?
Type:
Anomaly[]
(optional, default: Do not filter on this field)
resources property.
Specify an array of string values to match this event if the actual value of resources is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceDetails?
Type:
Related[]
(optional, default: Do not filter on this field)
sourceDetails property.
Specify an array of string values to match this event if the actual value of sourceDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript