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