ImportJobInProgress
- class aws_cdk.mixins_preview.aws_healthlake.events.ImportJobInProgress
Bases:
object(experimental) EventBridge event pattern for aws.healthlake@ImportJobInProgress.
- 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_in_progress = healthlake_events.ImportJobInProgress()
- Stability:
experimental
Static Methods
- classmethod import_job_in_progress_pattern(*, datastore_id=None, event_metadata=None, input_data_config=None, job_id=None, submit_time=None)
(experimental) EventBridge event pattern for Import Job In Progress.
- 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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldevent_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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldjob_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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldsubmit_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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this field
- Stability:
experimental
- Return type:
ImportJobInProgressProps
- class ImportJobInProgress.ImportJobInProgressProps(*, datastore_id=None, event_metadata=None, input_data_config=None, job_id=None, submit_time=None)
Bases:
object(experimental) Props type for aws.healthlake@ImportJobInProgress 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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldevent_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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldjob_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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldsubmit_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 theaws_events.Matchfor 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_in_progress_props = healthlake_events.ImportJobInProgress.ImportJobInProgressProps( datastore_id=["datastoreId"], event_metadata=AWSEventMetadataProps( region=["region"], resources=["resources"], version=["version"] ), input_data_config=healthlake_events.ImportJobInProgress.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.Matchfor 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.Matchfor 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.Matchfor 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.Matchfor more advanced matching options.- Default:
Do not filter on this field
- Stability:
experimental
InputDataConfig
- class ImportJobInProgress.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 theaws_events.Matchfor 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.ImportJobInProgress.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.Matchfor more advanced matching options.- Default:
Do not filter on this field
- Stability:
experimental