interface MetricDimensionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSecurityProfilePropsMixin.MetricDimensionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSecurityProfilePropsMixin_MetricDimensionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSecurityProfilePropsMixin.MetricDimensionProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSecurityProfilePropsMixin.MetricDimensionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSecurityProfilePropsMixin » MetricDimensionProperty |
The dimension of the metric.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const metricDimensionProperty: iot_mixins.CfnSecurityProfilePropsMixin.MetricDimensionProperty = {
dimensionName: 'dimensionName',
operator: 'operator',
};
Properties
| Name | Type | Description |
|---|---|---|
| dimension | string | The name of the dimension. |
| operator? | string | Operators are constructs that perform logical operations. |
dimensionName?
Type:
string
(optional)
The name of the dimension.
operator?
Type:
string
(optional)
Operators are constructs that perform logical operations.
Valid values are IN and NOT_IN .

.NET
Go
Java
Python
TypeScript