interface DataStoreDeletingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.HealthLake.Events.DataStoreDeleting.DataStoreDeletingProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awshealthlake/events#DataStoreDeleting_DataStoreDeletingProps |
Java | software.amazon.awscdk.mixins.preview.services.healthlake.events.DataStoreDeleting.DataStoreDeletingProps |
Python | aws_cdk.mixins_preview.aws_healthlake.events.DataStoreDeleting.DataStoreDeletingProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_healthlake ยป events ยป DataStoreDeleting ยป DataStoreDeletingProps |
Props type for aws.healthlake@DataStoreDeleting event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as healthlake_events } from '@aws-cdk/mixins-preview/aws-healthlake';
const dataStoreDeletingProps: healthlake_events.DataStoreDeleting.DataStoreDeletingProps = {
datastoreEndpoint: ['datastoreEndpoint'],
datastoreId: ['datastoreId'],
datastoreName: ['datastoreName'],
datastoreTypeVersion: ['datastoreTypeVersion'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string[] | datastoreEndpoint property. |
| datastore | string[] | datastoreId property. |
| datastore | string[] | datastoreName property. |
| datastore | string[] | datastoreTypeVersion property. |
| event | AWSEvent | EventBridge event metadata. |
datastoreEndpoint?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreEndpoint property.
Specify an array of string values to match this event if the actual value of datastoreEndpoint is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreId?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreId property.
Specify an array of string values to match this event if the actual value of datastoreId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreName?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreName property.
Specify an array of string values to match this event if the actual value of datastoreName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreTypeVersion?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreTypeVersion property.
Specify an array of string values to match this event if the actual value of datastoreTypeVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.

.NET
Go
Java
Python
TypeScript