interface ResourceCollection
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruNewRecommendationCreated.ResourceCollection |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruNewRecommendationCreated_ResourceCollection |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruNewRecommendationCreated.ResourceCollection |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruNewRecommendationCreated.ResourceCollection |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruNewRecommendationCreated ยป ResourceCollection |
Type definition for ResourceCollection.
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 resourceCollection: devopsguru_events.DevOpsGuruNewRecommendationCreated.ResourceCollection = {
cloudFormation: {
stackNames: ['stackNames'],
},
tags: [{
appBoundaryKey: ['appBoundaryKey'],
tagValues: ['tagValues'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | Cloud | cloudFormation property. |
| tags? | Tag[] | tags property. |
cloudFormation?
Type:
Cloud
(optional, default: Do not filter on this field)
cloudFormation property.
Specify an array of string values to match this event if the actual value of cloudFormation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
tags?
Type:
Tag[]
(optional, default: Do not filter on this field)
tags property.
Specify an array of string values to match this event if the actual value of tags 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