interface ContextKeySelectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudTrail.Mixins.CfnEventDataStorePropsMixin.ContextKeySelectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudtrail/mixins#CfnEventDataStorePropsMixin_ContextKeySelectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudtrail.mixins.CfnEventDataStorePropsMixin.ContextKeySelectorProperty |
Python | aws_cdk.mixins_preview.aws_cloudtrail.mixins.CfnEventDataStorePropsMixin.ContextKeySelectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudtrail » mixins » CfnEventDataStorePropsMixin » ContextKeySelectorProperty |
An object that contains information types to be included in CloudTrail enriched 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 contextKeySelectorProperty: cloudtrail_mixins.CfnEventDataStorePropsMixin.ContextKeySelectorProperty = {
equalTo: ['equalTo'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| equal | string[] | A list of keys defined by Type to be included in CloudTrail enriched events. |
| type? | string | Specifies the type of the event record field in ContextKeySelector. |
equalTo?
Type:
string[]
(optional)
A list of keys defined by Type to be included in CloudTrail enriched events.
type?
Type:
string
(optional)
Specifies the type of the event record field in ContextKeySelector.
Valid values include RequestContext, TagContext.

.NET
Go
Java
Python
TypeScript