interface SageMakerModelBuildingPipelineExecutionStepStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerModelBuildingPipelineExecutionStepStatusChange.SageMakerModelBuildingPipelineExecutionStepStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerModelBuildingPipelineExecutionStepStatusChange_SageMakerModelBuildingPipelineExecutionStepStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerModelBuildingPipelineExecutionStepStatusChange.SageMakerModelBuildingPipelineExecutionStepStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerModelBuildingPipelineExecutionStepStatusChange.SageMakerModelBuildingPipelineExecutionStepStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerModelBuildingPipelineExecutionStepStatusChange ยป SageMakerModelBuildingPipelineExecutionStepStatusChangeProps |
Props type for aws.sagemaker@SageMakerModelBuildingPipelineExecutionStepStatusChange 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 sageMakerModelBuildingPipelineExecutionStepStatusChangeProps: sagemaker_events.SageMakerModelBuildingPipelineExecutionStepStatusChange.SageMakerModelBuildingPipelineExecutionStepStatusChangeProps = {
cacheHitResult: {
sourcePipelineExecutionArn: ['sourcePipelineExecutionArn'],
},
currentStepStatus: ['currentStepStatus'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureReason: ['failureReason'],
metadata: {
processingJob: {
arn: ['arn'],
},
},
pipelineArn: ['pipelineArn'],
pipelineExecutionArn: ['pipelineExecutionArn'],
previousStepStatus: ['previousStepStatus'],
stepEndTime: ['stepEndTime'],
stepName: ['stepName'],
stepStartTime: ['stepStartTime'],
stepType: ['stepType'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cache | Cache | cacheHitResult property. |
| current | string[] | currentStepStatus property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failureReason property. |
| metadata? | Metadata | metadata property. |
| pipeline | string[] | pipelineArn property. |
| pipeline | string[] | pipelineExecutionArn property. |
| previous | string[] | previousStepStatus property. |
| step | string[] | stepEndTime property. |
| step | string[] | stepName property. |
| step | string[] | stepStartTime property. |
| step | string[] | stepType property. |
cacheHitResult?
Type:
Cache
(optional, default: Do not filter on this field)
cacheHitResult property.
Specify an array of string values to match this event if the actual value of cacheHitResult is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
currentStepStatus?
Type:
string[]
(optional, default: Do not filter on this field)
currentStepStatus property.
Specify an array of string values to match this event if the actual value of currentStepStatus 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.
failureReason?
Type:
string[]
(optional, default: Do not filter on this field)
failureReason property.
Specify an array of string values to match this event if the actual value of failureReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
metadata?
Type:
Metadata
(optional, default: Do not filter on this field)
metadata property.
Specify an array of string values to match this event if the actual value of metadata 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.
previousStepStatus?
Type:
string[]
(optional, default: Do not filter on this field)
previousStepStatus property.
Specify an array of string values to match this event if the actual value of previousStepStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stepEndTime?
Type:
string[]
(optional, default: Do not filter on this field)
stepEndTime property.
Specify an array of string values to match this event if the actual value of stepEndTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stepName?
Type:
string[]
(optional, default: Do not filter on this field)
stepName property.
Specify an array of string values to match this event if the actual value of stepName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stepStartTime?
Type:
string[]
(optional, default: Do not filter on this field)
stepStartTime property.
Specify an array of string values to match this event if the actual value of stepStartTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
stepType?
Type:
string[]
(optional, default: Do not filter on this field)
stepType property.
Specify an array of string values to match this event if the actual value of stepType 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