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