interface SageMakerAlgorithmStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerAlgorithmStateChange.SageMakerAlgorithmStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerAlgorithmStateChange_SageMakerAlgorithmStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerAlgorithmStateChange.SageMakerAlgorithmStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerAlgorithmStateChange.SageMakerAlgorithmStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerAlgorithmStateChange ยป SageMakerAlgorithmStateChangeProps |
Props type for aws.sagemaker@SageMakerAlgorithmStateChange 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 sageMakerAlgorithmStateChangeProps: sagemaker_events.SageMakerAlgorithmStateChange.SageMakerAlgorithmStateChangeProps = {
algorithmArn: ['algorithmArn'],
algorithmDescription: ['algorithmDescription'],
algorithmName: ['algorithmName'],
certifyForMarketplace: ['certifyForMarketplace'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| algorithm | string[] | AlgorithmArn property. |
| algorithm | string[] | AlgorithmDescription property. |
| algorithm | string[] | AlgorithmName property. |
| certify | string[] | CertifyForMarketplace property. |
| event | AWSEvent | EventBridge event metadata. |
| tags? | Tags[] | Tags property. |
algorithmArn?
Type:
string[]
(optional, default: Do not filter on this field)
AlgorithmArn property.
Specify an array of string values to match this event if the actual value of AlgorithmArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
algorithmDescription?
Type:
string[]
(optional, default: Do not filter on this field)
AlgorithmDescription property.
Specify an array of string values to match this event if the actual value of AlgorithmDescription is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
algorithmName?
Type:
string[]
(optional, default: Do not filter on this field)
AlgorithmName property.
Specify an array of string values to match this event if the actual value of AlgorithmName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
certifyForMarketplace?
Type:
string[]
(optional, default: Do not filter on this field)
CertifyForMarketplace property.
Specify an array of string values to match this event if the actual value of CertifyForMarketplace 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.
tags?
Type:
Tags[]
(optional, default: Do not filter on this field)
Tags property.
Specify an array of string values to match this event if the actual value of Tags 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