com.pulumi.aws.sagemaker.inputs.EndpointConfigurationProductionVariantServerlessConfigArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.sagemaker.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class EndpointConfigurationProductionVariantServerlessConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final EndpointConfigurationProductionVariantServerlessConfigArgs Empty = new EndpointConfigurationProductionVariantServerlessConfigArgs();
/**
* The maximum number of concurrent invocations your serverless endpoint can process. Valid values are between `1` and `200`.
*
*/
@Import(name="maxConcurrency", required=true)
private Output maxConcurrency;
/**
* @return The maximum number of concurrent invocations your serverless endpoint can process. Valid values are between `1` and `200`.
*
*/
public Output maxConcurrency() {
return this.maxConcurrency;
}
/**
* The memory size of your serverless endpoint. Valid values are in 1 GB increments: `1024` MB, `2048` MB, `3072` MB, `4096` MB, `5120` MB, or `6144` MB.
*
*/
@Import(name="memorySizeInMb", required=true)
private Output memorySizeInMb;
/**
* @return The memory size of your serverless endpoint. Valid values are in 1 GB increments: `1024` MB, `2048` MB, `3072` MB, `4096` MB, `5120` MB, or `6144` MB.
*
*/
public Output memorySizeInMb() {
return this.memorySizeInMb;
}
/**
* The amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to `max_concurrency`. Valid values are between `1` and `200`.
*
*/
@Import(name="provisionedConcurrency")
private @Nullable Output provisionedConcurrency;
/**
* @return The amount of provisioned concurrency to allocate for the serverless endpoint. Should be less than or equal to `max_concurrency`. Valid values are between `1` and `200`.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy