ImageSetDeleted

class aws_cdk.mixins_preview.aws_healthimaging.events.ImageSetDeleted

Bases: object

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

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

image_set_deleted = healthimaging_events.ImageSetDeleted()
Stability:

experimental

Static Methods

classmethod image_set_deleted_pattern(*, datastore_id=None, event_metadata=None, image_set_id=None, image_set_state=None, image_set_workflow_status=None, imaging_version=None)

(experimental) EventBridge event pattern for Image Set 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

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

  • image_set_id (Optional[Sequence[str]]) – (experimental) imageSetId property. Specify an array of string values to match this event if the actual value of imageSetId 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

  • image_set_state (Optional[Sequence[str]]) – (experimental) imageSetState property. Specify an array of string values to match this event if the actual value of imageSetState 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

  • image_set_workflow_status (Optional[Sequence[str]]) – (experimental) imageSetWorkflowStatus property. Specify an array of string values to match this event if the actual value of imageSetWorkflowStatus 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

  • 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

ImageSetDeletedProps

class ImageSetDeleted.ImageSetDeletedProps(*, datastore_id=None, event_metadata=None, image_set_id=None, image_set_state=None, image_set_workflow_status=None, imaging_version=None)

Bases: object

(experimental) Props type for aws.healthimaging@ImageSetDeleted 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

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

  • image_set_id (Optional[Sequence[str]]) – (experimental) imageSetId property. Specify an array of string values to match this event if the actual value of imageSetId 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

  • image_set_state (Optional[Sequence[str]]) – (experimental) imageSetState property. Specify an array of string values to match this event if the actual value of imageSetState 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

  • image_set_workflow_status (Optional[Sequence[str]]) – (experimental) imageSetWorkflowStatus property. Specify an array of string values to match this event if the actual value of imageSetWorkflowStatus 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

  • 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

image_set_deleted_props = healthimaging_events.ImageSetDeleted.ImageSetDeletedProps(
    datastore_id=["datastoreId"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    image_set_id=["imageSetId"],
    image_set_state=["imageSetState"],
    image_set_workflow_status=["imageSetWorkflowStatus"],
    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

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

image_set_id

(experimental) imageSetId property.

Specify an array of string values to match this event if the actual value of imageSetId 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

image_set_state

(experimental) imageSetState property.

Specify an array of string values to match this event if the actual value of imageSetState 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

image_set_workflow_status

(experimental) imageSetWorkflowStatus property.

Specify an array of string values to match this event if the actual value of imageSetWorkflowStatus 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

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