interface SageMakerModelBuildingPipelineExecutionStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerModelBuildingPipelineExecutionStatusChange_SageMakerModelBuildingPipelineExecutionStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerModelBuildingPipelineExecutionStatusChange ยป SageMakerModelBuildingPipelineExecutionStatusChangeProps |
Props type for aws.sagemaker@SageMakerModelBuildingPipelineExecutionStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as sagemaker_events } from '@aws-cdk/mixins-preview/aws-sagemaker';
const sageMakerModelBuildingPipelineExecutionStatusChangeProps: sagemaker_events.SageMakerModelBuildingPipelineExecutionStatusChange.SageMakerModelBuildingPipelineExecutionStatusChangeProps = {
currentPipelineExecutionStatus: ['currentPipelineExecutionStatus'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionEndTime: ['executionEndTime'],
executionStartTime: ['executionStartTime'],
pipelineArn: ['pipelineArn'],
pipelineExecutionArn: ['pipelineExecutionArn'],
pipelineExecutionDescription: ['pipelineExecutionDescription'],
pipelineExecutionDisplayName: ['pipelineExecutionDisplayName'],
previousPipelineExecutionStatus: ['previousPipelineExecutionStatus'],
};
Properties
| Name | Type | Description |
|---|---|---|
| current | string[] | currentPipelineExecutionStatus property. |
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | executionEndTime property. |
| execution | string[] | executionStartTime property. |
| pipeline | string[] | pipelineArn property. |
| pipeline | string[] | pipelineExecutionArn property. |
| pipeline | string[] | pipelineExecutionDescription property. |
| pipeline | string[] | pipelineExecutionDisplayName property. |
| previous | string[] | previousPipelineExecutionStatus property. |
currentPipelineExecutionStatus?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
executionEndTime?
Type:
string[]
(optional, default: Do not filter on this field)
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.
executionStartTime?
Type:
string[]
(optional, default: Do not filter on this field)
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.
pipelineArn?
Type:
string[]
(optional, default: Do not filter on this field)
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.
pipelineExecutionArn?
Type:
string[]
(optional, default: Do not filter on this field)
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.
pipelineExecutionDescription?
Type:
string[]
(optional, default: Do not filter on this field)
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.
pipelineExecutionDisplayName?
Type:
string[]
(optional, default: Do not filter on this field)
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.
previousPipelineExecutionStatus?
Type:
string[]
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript