interface AggregationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudTrail.CfnTrailPropsMixin.AggregationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudtrail#CfnTrailPropsMixin_AggregationConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudtrail.CfnTrailPropsMixin.AggregationConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudtrail.CfnTrailPropsMixin.AggregationConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudtrail » 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 { aws_cloudtrail as cloudtrail } from '@aws-cdk/cfn-property-mixins';
const aggregationConfigurationProperty: cloudtrail.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