interface SageMakerEndpointConfigStateChangeItem
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeItem |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#EndpointConfigEvents_SageMakerEndpointConfigStateChange_SageMakerEndpointConfigStateChangeItem |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeItem |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeItem |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป EndpointConfigEvents ยป SageMakerEndpointConfigStateChange ยป SageMakerEndpointConfigStateChangeItem |
Type definition for SageMakerEndpointConfigStateChangeItem.
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 sageMakerEndpointConfigStateChangeItem: sagemaker_events.EndpointConfigEvents.SageMakerEndpointConfigStateChange.SageMakerEndpointConfigStateChangeItem = {
initialInstanceCount: ['initialInstanceCount'],
initialVariantWeight: ['initialVariantWeight'],
instanceType: ['instanceType'],
modelName: ['modelName'],
variantName: ['variantName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| initial | string[] | InitialInstanceCount property. |
| initial | string[] | InitialVariantWeight property. |
| instance | string[] | InstanceType property. |
| model | string[] | ModelName property. |
| variant | string[] | VariantName property. |
initialInstanceCount?
Type:
string[]
(optional, default: Do not filter on this field)
InitialInstanceCount property.
Specify an array of string values to match this event if the actual value of InitialInstanceCount is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
initialVariantWeight?
Type:
string[]
(optional, default: Do not filter on this field)
InitialVariantWeight property.
Specify an array of string values to match this event if the actual value of InitialVariantWeight is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instanceType?
Type:
string[]
(optional, default: Do not filter on this field)
InstanceType property.
Specify an array of string values to match this event if the actual value of InstanceType 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.
variantName?
Type:
string[]
(optional, default: Do not filter on this field)
VariantName property.
Specify an array of string values to match this event if the actual value of VariantName 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