interface DevOpsGuruNewRecommendationCreatedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruNewRecommendationCreated.DevOpsGuruNewRecommendationCreatedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruNewRecommendationCreated_DevOpsGuruNewRecommendationCreatedProps |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruNewRecommendationCreated.DevOpsGuruNewRecommendationCreatedProps |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruNewRecommendationCreated.DevOpsGuruNewRecommendationCreatedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruNewRecommendationCreated ยป DevOpsGuruNewRecommendationCreatedProps |
Props type for aws.devopsguru@DevOpsGuruNewRecommendationCreated event.
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 devOpsGuruNewRecommendationCreatedProps: devopsguru_events.DevOpsGuruNewRecommendationCreated.DevOpsGuruNewRecommendationCreatedProps = {
accountId: ['accountId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
insightDescription: ['insightDescription'],
insightId: ['insightId'],
insightName: ['insightName'],
insightType: ['insightType'],
insightUrl: ['insightUrl'],
messageType: ['messageType'],
recommendations: [{
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'],
}],
}],
}],
region: ['region'],
resourceCollection: {
cloudFormation: {
stackNames: ['stackNames'],
},
tags: [{
appBoundaryKey: ['appBoundaryKey'],
tagValues: ['tagValues'],
}],
},
startTime: ['startTime'],
startTimeIso: ['startTimeIso'],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | accountId property. |
| event | AWSEvent | EventBridge event metadata. |
| insight | string[] | insightDescription property. |
| insight | string[] | insightId property. |
| insight | string[] | insightName property. |
| insight | string[] | insightType property. |
| insight | string[] | insightUrl property. |
| message | string[] | messageType property. |
| recommendations? | Recommendation[] | recommendations property. |
| region? | string[] | region property. |
| resource | Resource | resourceCollection property. |
| start | string[] | startTime property. |
| start | string[] | startTimeISO property. |
accountId?
Type:
string[]
(optional, default: Do not filter on this field)
accountId property.
Specify an array of string values to match this event if the actual value of accountId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
insightDescription?
Type:
string[]
(optional, default: Do not filter on this field)
insightDescription property.
Specify an array of string values to match this event if the actual value of insightDescription is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
insightId?
Type:
string[]
(optional, default: Do not filter on this field)
insightId property.
Specify an array of string values to match this event if the actual value of insightId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
insightName?
Type:
string[]
(optional, default: Do not filter on this field)
insightName property.
Specify an array of string values to match this event if the actual value of insightName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
insightType?
Type:
string[]
(optional, default: Do not filter on this field)
insightType property.
Specify an array of string values to match this event if the actual value of insightType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
insightUrl?
Type:
string[]
(optional, default: Do not filter on this field)
insightUrl property.
Specify an array of string values to match this event if the actual value of insightUrl is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
messageType?
Type:
string[]
(optional, default: Do not filter on this field)
messageType property.
Specify an array of string values to match this event if the actual value of messageType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
recommendations?
Type:
Recommendation[]
(optional, default: Do not filter on this field)
recommendations property.
Specify an array of string values to match this event if the actual value of recommendations is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
region?
Type:
string[]
(optional, default: Do not filter on this field)
region property.
Specify an array of string values to match this event if the actual value of region is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resourceCollection?
Type:
Resource
(optional, default: Do not filter on this field)
resourceCollection property.
Specify an array of string values to match this event if the actual value of resourceCollection is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
startTime property.
Specify an array of string values to match this event if the actual value of startTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTimeIso?
Type:
string[]
(optional, default: Do not filter on this field)
startTimeISO property.
Specify an array of string values to match this event if the actual value of startTimeISO 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