interface AggregationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnFleetMetricPropsMixin.AggregationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnFleetMetricPropsMixin_AggregationTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnFleetMetricPropsMixin.AggregationTypeProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnFleetMetricPropsMixin.AggregationTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnFleetMetricPropsMixin » AggregationTypeProperty |
The type of aggregation queries.
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 aggregationTypeProperty: iot_mixins.CfnFleetMetricPropsMixin.AggregationTypeProperty = {
name: 'name',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the aggregation type. |
| values? | string[] | A list of the values of aggregation types. |
name?
Type:
string
(optional)
The name of the aggregation type.
values?
Type:
string[]
(optional)
A list of the values of aggregation types.

.NET
Go
Java
Python
TypeScript