DataStoreDeleted

class aws_cdk.mixins_preview.aws_healthimaging.events.DataStoreDeleted

Bases: object

(experimental) EventBridge event pattern for aws.healthimaging@DataStoreDeleted.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_healthimaging import events as healthimaging_events

data_store_deleted = healthimaging_events.DataStoreDeleted()
Stability:

experimental

Static Methods

classmethod data_store_deleted_pattern(*, datastore_id=None, datastore_name=None, datastore_status=None, event_metadata=None, imaging_version=None)

(experimental) EventBridge event pattern for Data Store Deleted.

Parameters:
  • datastore_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Filter with the Datastore reference

  • datastore_name (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • datastore_status (Optional[Sequence[str]]) – (experimental) datastoreStatus property. Specify an array of string values to match this event if the actual value of datastoreStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • imaging_version (Optional[Sequence[str]]) – (experimental) imagingVersion property. Specify an array of string values to match this event if the actual value of imagingVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

Stability:

experimental

Return type:

EventPattern

DataStoreDeletedProps

class DataStoreDeleted.DataStoreDeletedProps(*, datastore_id=None, datastore_name=None, datastore_status=None, event_metadata=None, imaging_version=None)

Bases: object

(experimental) Props type for aws.healthimaging@DataStoreDeleted event.

Parameters:
  • datastore_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Filter with the Datastore reference

  • datastore_name (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • datastore_status (Optional[Sequence[str]]) – (experimental) datastoreStatus property. Specify an array of string values to match this event if the actual value of datastoreStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • imaging_version (Optional[Sequence[str]]) – (experimental) imagingVersion property. Specify an array of string values to match this event if the actual value of imagingVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import AWSEventMetadataProps
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_healthimaging import events as healthimaging_events

data_store_deleted_props = healthimaging_events.DataStoreDeleted.DataStoreDeletedProps(
    datastore_id=["datastoreId"],
    datastore_name=["datastoreName"],
    datastore_status=["datastoreStatus"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    imaging_version=["imagingVersion"]
)

Attributes

datastore_id

(experimental) 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.

Default:
  • Filter with the Datastore reference

Stability:

experimental

datastore_name

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

datastore_status

(experimental) datastoreStatus property.

Specify an array of string values to match this event if the actual value of datastoreStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default:
  • Do not filter on this field

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

imaging_version

(experimental) imagingVersion property.

Specify an array of string values to match this event if the actual value of imagingVersion is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default:
  • Do not filter on this field

Stability:

experimental