Show / Hide Table of Contents

Class CfnEndpointConfigPropsMixin.RoutingConfigProperty

Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.

Inheritance
object
CfnEndpointConfigPropsMixin.RoutingConfigProperty
Implements
CfnEndpointConfigPropsMixin.IRoutingConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-routingconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-routingconfig.html

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

object

Remarks

Specify PrefixLength and ConcurrencyThreshold to control routing behavior.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-routingconfig.html#cfn-sagemaker-endpointconfig-routingconfig-prefixawareroutingconfig

Type union: either IResolvable or CfnEndpointConfigPropsMixin.IPrefixAwareRoutingConfigProperty

RoutingStrategy

Sets how the endpoint routes incoming traffic.

public string? RoutingStrategy { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-endpointconfig-routingconfig.html#cfn-sagemaker-endpointconfig-routingconfig-routingstrategy

Implements

CfnEndpointConfigPropsMixin.IRoutingConfigProperty
Back to top Generated by DocFX