ExportJobSubmitted
- class aws_cdk.mixins_preview.aws_healthlake.events.ExportJobSubmitted
Bases:
object(experimental) EventBridge event pattern for aws.healthlake@ExportJobSubmitted.
- 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_submitted = healthlake_events.ExportJobSubmitted()
- Stability:
experimental
Static Methods
- classmethod export_job_submitted_pattern(*, datastore_id=None, event_metadata=None, job_id=None, output_data_config=None, submit_time=None)
(experimental) EventBridge event pattern for Export 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 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: - -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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldoutput_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 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:
ExportJobSubmittedProps
- class ExportJobSubmitted.ExportJobSubmittedProps(*, datastore_id=None, event_metadata=None, job_id=None, output_data_config=None, submit_time=None)
Bases:
object(experimental) Props type for aws.healthlake@ExportJobSubmitted 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: - -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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this fieldoutput_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 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 export_job_submitted_props = healthlake_events.ExportJobSubmitted.ExportJobSubmittedProps( datastore_id=["datastoreId"], event_metadata=AWSEventMetadataProps( region=["region"], resources=["resources"], version=["version"] ), job_id=["jobId"], output_data_config=healthlake_events.ExportJobSubmitted.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.Matchfor 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.Matchfor 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.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
OutputDataConfig
- class ExportJobSubmitted.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 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 output_data_config = healthlake_events.ExportJobSubmitted.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.Matchfor more advanced matching options.- Default:
Do not filter on this field
- Stability:
experimental