interface SageMakerEndpointConfigStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#EndpointConfigEvents_SageMakerEndpointConfigStateChange_SageMakerEndpointConfigStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป EndpointConfigEvents ยป SageMakerEndpointConfigStateChange ยป SageMakerEndpointConfigStateChangeProps |
Props type for EndpointConfig aws.sagemaker@SageMakerEndpointConfigStateChange 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 sageMakerEndpointConfigStateChangeProps: sagemaker_events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeProps = {
creationTime: ['creationTime'],
endpointConfigArn: ['endpointConfigArn'],
endpointConfigName: ['endpointConfigName'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
productionVariants: [{
initialInstanceCount: ['initialInstanceCount'],
initialVariantWeight: ['initialVariantWeight'],
instanceType: ['instanceType'],
modelName: ['modelName'],
variantName: ['variantName'],
}],
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| endpoint | string[] | EndpointConfigArn property. |
| endpoint | string[] | EndpointConfigName property. |
| event | AWSEvent | EventBridge event metadata. |
| production | Sage[] | ProductionVariants 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.
endpointConfigArn?
Type:
string[]
(optional, default: Do not filter on this field)
EndpointConfigArn property.
Specify an array of string values to match this event if the actual value of EndpointConfigArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endpointConfigName?
Type:
string[]
(optional, default: Filter with the EndpointConfig reference)
EndpointConfigName property.
Specify an array of string values to match this event if the actual value of EndpointConfigName 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.
productionVariants?
Type:
Sage[]
(optional, default: Do not filter on this field)
ProductionVariants property.
Specify an array of string values to match this event if the actual value of ProductionVariants 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