interface AggregationTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnFleetMetricPropsMixin.AggregationTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnFleetMetricPropsMixin_AggregationTypeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnFleetMetricPropsMixin.AggregationTypeProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnFleetMetricPropsMixin.AggregationTypeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const aggregationTypeProperty: iot.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