interface DataIdentifiers
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruInsightClosed.DataIdentifiers |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruInsightClosed_DataIdentifiers |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruInsightClosed.DataIdentifiers |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruInsightClosed.DataIdentifiers |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruInsightClosed ยป DataIdentifiers |
Type definition for DataIdentifiers.
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 dataIdentifiers: devopsguru_events.DevOpsGuruInsightClosed.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'],
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | Alarm | alarmCondition property. |
| dimensions? | Cloud[] | dimensions property. |
| metric | string[] | metricDisplayName property. |
| metric | Metric | metricQuery property. |
| name? | string[] | name property. |
| namespace? | string[] | namespace property. |
| period? | string[] | period property. |
| resource | string[] | ResourceId property. |
| resource | string[] | ResourceType property. |
| stat? | string[] | stat property. |
| unit? | string[] | unit property. |
alarmCondition?
Type:
Alarm
(optional, default: Do not filter on this field)
alarmCondition property.
Specify an array of string values to match this event if the actual value of alarmCondition is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
dimensions?
Type:
Cloud[]
(optional, default: Do not filter on this field)
dimensions property.
Specify an array of string values to match this event if the actual value of dimensions is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
metricDisplayName?
Type:
string[]
(optional, default: Do not filter on this field)
metricDisplayName property.
Specify an array of string values to match this event if the actual value of metricDisplayName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
metricQuery?
Type:
Metric
(optional, default: Do not filter on this field)
metricQuery property.
Specify an array of string values to match this event if the actual value of metricQuery 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.
namespace?
Type:
string[]
(optional, default: Do not filter on this field)
namespace property.
Specify an array of string values to match this event if the actual value of namespace is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
period?
Type:
string[]
(optional, default: Do not filter on this field)
period property.
Specify an array of string values to match this event if the actual value of period is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resourceId?
Type:
string[]
(optional, default: Do not filter on this field)
ResourceId property.
Specify an array of string values to match this event if the actual value of ResourceId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resourceType?
Type:
string[]
(optional, default: Do not filter on this field)
ResourceType property.
Specify an array of string values to match this event if the actual value of ResourceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stat?
Type:
string[]
(optional, default: Do not filter on this field)
stat property.
Specify an array of string values to match this event if the actual value of stat is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
unit?
Type:
string[]
(optional, default: Do not filter on this field)
unit property.
Specify an array of string values to match this event if the actual value of unit 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