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