EndpointConfigurationProductionVariantRoutingConfig constructor

const EndpointConfigurationProductionVariantRoutingConfig({
  1. required Input<String> routingStrategy,
})

Creates a new EndpointConfigurationProductionVariantRoutingConfig. routingStrategy How the endpoint routes incoming traffic. Valid values are LEAST_OUTSTANDING_REQUESTS and RANDOM. LEAST_OUTSTANDING_REQUESTS routes requests to the specific instances that have more capacity to process them. RANDOM routes each request to a randomly chosen instance.

Implementation

const EndpointConfigurationProductionVariantRoutingConfig({
  required this.routingStrategy,
});