interface AggregationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudTrail.CfnTrail.AggregationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudtrail#CfnTrail_AggregationConfigurationProperty |
Java | software.amazon.awscdk.services.cloudtrail.CfnTrail.AggregationConfigurationProperty |
Python | aws_cdk.aws_cloudtrail.CfnTrail.AggregationConfigurationProperty |
TypeScript | aws-cdk-lib » aws_cloudtrail » CfnTrail » 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 { aws_cloudtrail as cloudtrail } from 'aws-cdk-lib';
const aggregationConfigurationProperty: cloudtrail.CfnTrail.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
Specifies the event category for which aggregation should be performed.
templates
Type:
string[]
A list of aggregation templates that can be used to configure event aggregation.

.NET
Go
Java
Python
TypeScript