Class CfnEndpointConfigPropsMixin.RoutingConfigProperty
Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnEndpointConfigPropsMixin.RoutingConfigProperty : CfnEndpointConfigPropsMixin.IRoutingConfigProperty
Syntax (vb)
Public Class CfnEndpointConfigPropsMixin.RoutingConfigProperty Implements CfnEndpointConfigPropsMixin.IRoutingConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var routingConfigProperty = new RoutingConfigProperty {
PrefixAwareRoutingConfig = new PrefixAwareRoutingConfigProperty {
ConcurrencyThreshold = 123,
PrefixLength = 123
},
RoutingStrategy = "routingStrategy"
};
Synopsis
Constructors
| RoutingConfigProperty() | Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts. |
Properties
| PrefixAwareRoutingConfig | The configuration for prefix-aware routing on a SageMaker real-time inference endpoint. |
| RoutingStrategy | Sets how the endpoint routes incoming traffic. |
Constructors
RoutingConfigProperty()
Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.
public RoutingConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var routingConfigProperty = new RoutingConfigProperty {
PrefixAwareRoutingConfig = new PrefixAwareRoutingConfigProperty {
ConcurrencyThreshold = 123,
PrefixLength = 123
},
RoutingStrategy = "routingStrategy"
};
Properties
PrefixAwareRoutingConfig
The configuration for prefix-aware routing on a SageMaker real-time inference endpoint.
public object? PrefixAwareRoutingConfig { get; set; }
Property Value
Remarks
Specify PrefixLength and ConcurrencyThreshold to control routing behavior.
Type union: either IResolvable or CfnEndpointConfigPropsMixin.IPrefixAwareRoutingConfigProperty
RoutingStrategy
Sets how the endpoint routes incoming traffic.
public string? RoutingStrategy { get; set; }