interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KMS.Events.KeyEvents.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskms/events#KeyEvents_AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.kms.events.KeyEvents.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_kms.events.KeyEvents.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_kms ยป events ยป KeyEvents ยป AWSAPICallViaCloudTrail ยป RequestParameters |
Type definition for RequestParameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as kms_events } from '@aws-cdk/mixins-preview/aws-kms';
const requestParameters: kms_events.KeyEvents.AWSAPICallViaCloudTrail.RequestParameters = {
encryptionContext: {
awsS3Arn: ['awsS3Arn'],
},
keyId: ['keyId'],
keySpec: ['keySpec'],
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | Encryption | encryptionContext property. |
| key | string[] | keyId property. |
| key | string[] | keySpec property. |
encryptionContext?
Type:
Encryption
(optional, default: Do not filter on this field)
encryptionContext property.
Specify an array of string values to match this event if the actual value of encryptionContext is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
keyId?
Type:
string[]
(optional, default: Filter with the Key reference)
keyId property.
Specify an array of string values to match this event if the actual value of keyId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
keySpec?
Type:
string[]
(optional, default: Do not filter on this field)
keySpec property.
Specify an array of string values to match this event if the actual value of keySpec is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript