interface KMSImportedKeyMaterialExpirationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KMS.Events.KeyEvents.KMSImportedKeyMaterialExpiration.KMSImportedKeyMaterialExpirationProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskms/events#KeyEvents_KMSImportedKeyMaterialExpiration_KMSImportedKeyMaterialExpirationProps |
Java | software.amazon.awscdk.mixins.preview.services.kms.events.KeyEvents.KMSImportedKeyMaterialExpiration.KMSImportedKeyMaterialExpirationProps |
Python | aws_cdk.mixins_preview.aws_kms.events.KeyEvents.KMSImportedKeyMaterialExpiration.KMSImportedKeyMaterialExpirationProps |
TypeScript | @aws-cdk/mixins-preview » aws_kms » events » KeyEvents » KMSImportedKeyMaterialExpiration » KMSImportedKeyMaterialExpirationProps |
Props type for Key aws.kms@KMSImportedKeyMaterialExpiration event.
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 kMSImportedKeyMaterialExpirationProps: kms_events.KeyEvents.KMSImportedKeyMaterialExpiration.KMSImportedKeyMaterialExpirationProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
keyId: ['keyId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| key | string[] | key-id property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
keyId?
Type:
string[]
(optional, default: Filter with the Key reference)
key-id property.
Specify an array of string values to match this event if the actual value of key-id 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