interface Recommendation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruNewRecommendationCreated.Recommendation |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruNewRecommendationCreated_Recommendation |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruNewRecommendationCreated.Recommendation |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruNewRecommendationCreated.Recommendation |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruNewRecommendationCreated ยป Recommendation |
Type definition for Recommendation.
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 recommendation: devopsguru_events.DevOpsGuruNewRecommendationCreated.Recommendation = {
description: ['description'],
link: ['link'],
name: ['name'],
reason: ['reason'],
relatedAnomalies: [{
associatedResourceArns: ['associatedResourceArns'],
resources: [{
name: ['name'],
type: ['type'],
}],
sourceDetails: [{
cloudWatchMetrics: [{
metricName: ['metricName'],
namespace: ['namespace'],
}],
}],
}],
relatedEvents: [{
name: ['name'],
resources: [{
name: ['name'],
type: ['type'],
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string[] | description property. |
| link? | string[] | link property. |
| name? | string[] | name property. |
| reason? | string[] | reason property. |
| related | Related[] | relatedAnomalies property. |
| related | Related[] | relatedEvents property. |
description?
Type:
string[]
(optional, default: Do not filter on this field)
description property.
Specify an array of string values to match this event if the actual value of description is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
link?
Type:
string[]
(optional, default: Do not filter on this field)
link property.
Specify an array of string values to match this event if the actual value of link is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reason?
Type:
string[]
(optional, default: Do not filter on this field)
reason property.
Specify an array of string values to match this event if the actual value of reason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
relatedAnomalies?
Type:
Related[]
(optional, default: Do not filter on this field)
relatedAnomalies property.
Specify an array of string values to match this event if the actual value of relatedAnomalies is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
relatedEvents?
Type:
Related[]
(optional, default: Do not filter on this field)
relatedEvents property.
Specify an array of string values to match this event if the actual value of relatedEvents 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