interface SageMakerModelStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerModelStateChange.SageMakerModelStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerModelStateChange_SageMakerModelStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerModelStateChange.SageMakerModelStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerModelStateChange.SageMakerModelStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerModelStateChange ยป SageMakerModelStateChangeProps |
Props type for aws.sagemaker@SageMakerModelStateChange 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 sageMakerModelStateChangeProps: sagemaker_events.SageMakerModelStateChange.SageMakerModelStateChangeProps = {
creationTime: ['creationTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
executionRoleArn: ['executionRoleArn'],
modelArn: ['modelArn'],
modelName: ['modelName'],
primaryContainer: {
containerHostname: ['containerHostname'],
image: ['image'],
modelDataUrl: ['modelDataUrl'],
},
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| event | AWSEvent | EventBridge event metadata. |
| execution | string[] | ExecutionRoleArn property. |
| model | string[] | ModelArn property. |
| model | string[] | ModelName property. |
| primary | Primary | PrimaryContainer property. |
| tags? | Tags[] | Tags property. |
creationTime?
Type:
string[]
(optional, default: Do not filter on this field)
CreationTime property.
Specify an array of string values to match this event if the actual value of CreationTime 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.
executionRoleArn?
Type:
string[]
(optional, default: Do not filter on this field)
ExecutionRoleArn property.
Specify an array of string values to match this event if the actual value of ExecutionRoleArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
modelArn?
Type:
string[]
(optional, default: Do not filter on this field)
ModelArn property.
Specify an array of string values to match this event if the actual value of ModelArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
modelName?
Type:
string[]
(optional, default: Do not filter on this field)
ModelName property.
Specify an array of string values to match this event if the actual value of ModelName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
primaryContainer?
Type:
Primary
(optional, default: Do not filter on this field)
PrimaryContainer property.
Specify an array of string values to match this event if the actual value of PrimaryContainer 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