SageMakerModelBuildingPipelineExecutionStatusChange

class aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerModelBuildingPipelineExecutionStatusChange

Bases: object

(experimental) EventBridge event pattern for aws.sagemaker@SageMakerModelBuildingPipelineExecutionStatusChange.

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_sagemaker import events as sagemaker_events

sage_maker_model_building_pipeline_execution_status_change = sagemaker_events.SageMakerModelBuildingPipelineExecutionStatusChange()
Stability:

experimental

Static Methods

classmethod sage_maker_model_building_pipeline_execution_status_change_pattern(*, current_pipeline_execution_status=None, event_metadata=None, execution_end_time=None, execution_start_time=None, pipeline_arn=None, pipeline_execution_arn=None, pipeline_execution_description=None, pipeline_execution_display_name=None, previous_pipeline_execution_status=None)

(experimental) EventBridge event pattern for SageMaker Model Building Pipeline Execution Status Change.

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

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

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

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

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

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

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

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

SageMakerModelBuildingPipelineExecutionStatusChangeProps

class SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps(*, current_pipeline_execution_status=None, event_metadata=None, execution_end_time=None, execution_start_time=None, pipeline_arn=None, pipeline_execution_arn=None, pipeline_execution_description=None, pipeline_execution_display_name=None, previous_pipeline_execution_status=None)

Bases: object

(experimental) Props type for aws.sagemaker@SageMakerModelBuildingPipelineExecutionStatusChange event.

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

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

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

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

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

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

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

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

sage_maker_model_building_pipeline_execution_status_change_props = sagemaker_events.SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps(
    current_pipeline_execution_status=["currentPipelineExecutionStatus"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    execution_end_time=["executionEndTime"],
    execution_start_time=["executionStartTime"],
    pipeline_arn=["pipelineArn"],
    pipeline_execution_arn=["pipelineExecutionArn"],
    pipeline_execution_description=["pipelineExecutionDescription"],
    pipeline_execution_display_name=["pipelineExecutionDisplayName"],
    previous_pipeline_execution_status=["previousPipelineExecutionStatus"]
)

Attributes

current_pipeline_execution_status

(experimental) currentPipelineExecutionStatus property.

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

execution_end_time

(experimental) executionEndTime property.

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

execution_start_time

(experimental) executionStartTime property.

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

pipeline_arn

(experimental) pipelineArn property.

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

pipeline_execution_arn

(experimental) pipelineExecutionArn property.

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

pipeline_execution_description

(experimental) pipelineExecutionDescription property.

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

pipeline_execution_display_name

(experimental) pipelineExecutionDisplayName property.

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

previous_pipeline_execution_status

(experimental) previousPipelineExecutionStatus property.

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