ReadSetExportJobStatusChange

class aws_cdk.mixins_preview.aws_omics.events.ReadSetExportJobStatusChange

Bases: object

(experimental) EventBridge event pattern for aws.omics@ReadSetExportJobStatusChange.

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_omics import events as omics_events

read_set_export_job_status_change = omics_events.ReadSetExportJobStatusChange()
Stability:

experimental

Static Methods

classmethod read_set_export_job_status_change_pattern(*, event_metadata=None, id=None, omics_version=None, sequence_store_id=None, status=None, status_message=None)

(experimental) EventBridge event pattern for Read Set Export Job Status Change.

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

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

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

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

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

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

ReadSetExportJobStatusChangeProps

class ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps(*, event_metadata=None, id=None, omics_version=None, sequence_store_id=None, status=None, status_message=None)

Bases: object

(experimental) Props type for aws.omics@ReadSetExportJobStatusChange event.

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

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

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

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

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

  • status_message (Optional[Sequence[str]]) – (experimental) statusMessage property. Specify an array of string values to match this event if the actual value of statusMessage 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_omics import events as omics_events

read_set_export_job_status_change_props = omics_events.ReadSetExportJobStatusChange.ReadSetExportJobStatusChangeProps(
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    id=["id"],
    omics_version=["omicsVersion"],
    sequence_store_id=["sequenceStoreId"],
    status=["status"],
    status_message=["statusMessage"]
)

Attributes

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

id

(experimental) id property.

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

omics_version

(experimental) omicsVersion property.

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

sequence_store_id

(experimental) sequenceStoreId property.

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

Stability:

experimental

status

(experimental) status property.

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

status_message

(experimental) statusMessage property.

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