Interface CfnEndpointConfig.InstancePoolProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointConfig.InstancePoolProperty.Jsii$Proxy
Enclosing class:
CfnEndpointConfig

@Stability(Stable) public static interface CfnEndpointConfig.InstancePoolProperty extends software.amazon.jsii.JsiiSerializable
Specifies an instance type and its priority for a heterogeneous endpoint.

Use instance pools to configure a production variant with multiple instance types, enabling the endpoint to provision instances across different types based on priority.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 InstancePoolProperty instancePoolProperty = InstancePoolProperty.builder()
         .instanceType("instanceType")
         .priority(123)
         // the properties below are optional
         .modelNameOverride("modelNameOverride")
         .build();
 

See Also: