ExportJobCompleted

class aws_cdk.mixins_preview.aws_healthlake.events.ExportJobCompleted

Bases: object

(experimental) EventBridge event pattern for aws.healthlake@ExportJobCompleted.

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_healthlake import events as healthlake_events

export_job_completed = healthlake_events.ExportJobCompleted()
Stability:

experimental

Static Methods

classmethod export_job_completed_pattern(*, datastore_id=None, event_metadata=None, job_id=None, output_data_config=None, submit_time=None)

(experimental) EventBridge event pattern for Export Job Completed.

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: - Do not filter on this field

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

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

  • output_data_config (Union[OutputDataConfig, Dict[str, Any], None]) – (experimental) outputDataConfig property. Specify an array of string values to match this event if the actual value of outputDataConfig 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

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

ExportJobCompletedProps

class ExportJobCompleted.ExportJobCompletedProps(*, datastore_id=None, event_metadata=None, job_id=None, output_data_config=None, submit_time=None)

Bases: object

(experimental) Props type for aws.healthlake@ExportJobCompleted 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: - Do not filter on this field

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

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

  • output_data_config (Union[OutputDataConfig, Dict[str, Any], None]) – (experimental) outputDataConfig property. Specify an array of string values to match this event if the actual value of outputDataConfig 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

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

export_job_completed_props = healthlake_events.ExportJobCompleted.ExportJobCompletedProps(
    datastore_id=["datastoreId"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    job_id=["jobId"],
    output_data_config=healthlake_events.ExportJobCompleted.OutputDataConfig(
        s3_uri=["s3Uri"]
    ),
    submit_time=["submitTime"]
)

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:
  • Do not filter on this field

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

job_id

(experimental) jobId property.

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

output_data_config

(experimental) outputDataConfig property.

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

submit_time

(experimental) submitTime property.

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

OutputDataConfig

class ExportJobCompleted.OutputDataConfig(*, s3_uri=None)

Bases: object

(experimental) Type definition for OutputDataConfig.

Parameters:

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

# 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_healthlake import events as healthlake_events

output_data_config = healthlake_events.ExportJobCompleted.OutputDataConfig(
    s3_uri=["s3Uri"]
)

Attributes

s3_uri

(experimental) s3Uri property.

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