interface AggregationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudTrail.Mixins.CfnTrailPropsMixin.AggregationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudtrail/mixins#CfnTrailPropsMixin_AggregationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudtrail.mixins.CfnTrailPropsMixin.AggregationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_cloudtrail.mixins.CfnTrailPropsMixin.AggregationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudtrail » mixins » CfnTrailPropsMixin » AggregationConfigurationProperty |
An object that contains configuration settings for aggregating events.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudtrail_mixins } from '@aws-cdk/mixins-preview/aws-cloudtrail';
const aggregationConfigurationProperty: cloudtrail_mixins.CfnTrailPropsMixin.AggregationConfigurationProperty = {
eventCategory: 'eventCategory',
templates: ['templates'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | Specifies the event category for which aggregation should be performed. |
| templates? | string[] | A list of aggregation templates that can be used to configure event aggregation. |
eventCategory?
Type:
string
(optional)
Specifies the event category for which aggregation should be performed.
templates?
Type:
string[]
(optional)
A list of aggregation templates that can be used to configure event aggregation.

.NET
Go
Java
Python
TypeScript