interface SourceDetail
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruInsightSeverityUpgraded.SourceDetail |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruInsightSeverityUpgraded_SourceDetail |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruInsightSeverityUpgraded.SourceDetail |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruInsightSeverityUpgraded.SourceDetail |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruInsightSeverityUpgraded ยป SourceDetail |
Type definition for SourceDetail.
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 sourceDetail: devopsguru_events.DevOpsGuruInsightSeverityUpgraded.SourceDetail = {
dataIdentifiers: {
alarmCondition: {
detectionBand: ['detectionBand'],
referenceValue: {
comparisonOperator: ['comparisonOperator'],
datapointsToAlarm: ['datapointsToAlarm'],
evaluationPeriod: ['evaluationPeriod'],
threshold: ['threshold'],
},
},
dimensions: [{
name: ['name'],
value: ['value'],
}],
metricDisplayName: ['metricDisplayName'],
metricQuery: {
groupBy: {
dimensions: ['dimensions'],
group: ['group'],
},
metric: ['metric'],
},
name: ['name'],
namespace: ['namespace'],
period: ['period'],
resourceId: ['resourceId'],
resourceType: ['resourceType'],
stat: ['stat'],
unit: ['unit'],
},
dataSource: ['dataSource'],
dataSourceDetail: ['dataSourceDetail'],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | Data | dataIdentifiers property. |
| data | string[] | dataSource property. |
| data | string[] | dataSourceDetail property. |
dataIdentifiers?
Type:
Data
(optional, default: Do not filter on this field)
dataIdentifiers property.
Specify an array of string values to match this event if the actual value of dataIdentifiers is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
dataSource?
Type:
string[]
(optional, default: Do not filter on this field)
dataSource property.
Specify an array of string values to match this event if the actual value of dataSource is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
dataSourceDetail?
Type:
string[]
(optional, default: Do not filter on this field)
dataSourceDetail property.
Specify an array of string values to match this event if the actual value of dataSourceDetail 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