ImportJobSubmitted

class aws_cdk.mixins_preview.aws_healthlake.events.ImportJobSubmitted

Bases: object

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

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

import_job_submitted = healthlake_events.ImportJobSubmitted()
Stability:

experimental

Static Methods

classmethod import_job_submitted_pattern(*, datastore_id=None, event_metadata=None, input_data_config=None, job_id=None, submit_time=None)

(experimental) EventBridge event pattern for Import Job Submitted.

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: - -

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

  • 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

  • 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

ImportJobSubmittedProps

class ImportJobSubmitted.ImportJobSubmittedProps(*, datastore_id=None, event_metadata=None, input_data_config=None, job_id=None, submit_time=None)

Bases: object

(experimental) Props type for aws.healthlake@ImportJobSubmitted 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: - -

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

  • 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

  • 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

import_job_submitted_props = healthlake_events.ImportJobSubmitted.ImportJobSubmittedProps(
    datastore_id=["datastoreId"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    input_data_config=healthlake_events.ImportJobSubmitted.InputDataConfig(
        s3_uri=["s3Uri"]
    ),
    job_id=["jobId"],
    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

input_data_config

(experimental) inputDataConfig property.

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

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

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

InputDataConfig

class ImportJobSubmitted.InputDataConfig(*, s3_uri=None)

Bases: object

(experimental) Type definition for InputDataConfig.

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

input_data_config = healthlake_events.ImportJobSubmitted.InputDataConfig(
    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