Class: Aws::SageMaker::Types::InferenceComponentStartupParameters

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Settings that take effect while the model container starts up.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#container_startup_health_check_timeout_in_secondsInteger

The timeout value, in seconds, for your inference container to pass health check by Amazon S3 Hosting. For more information about health check, see [How Your Container Should Respond to Health Check (Ping) Requests].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms-inference-code.html#your-algorithms-inference-algo-ping-requests

Returns:

  • (Integer)


23067
23068
23069
23070
23071
23072
# File 'lib/aws-sdk-sagemaker/types.rb', line 23067

class InferenceComponentStartupParameters < Struct.new(
  :model_data_download_timeout_in_seconds,
  :container_startup_health_check_timeout_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#model_data_download_timeout_in_secondsInteger

The timeout value, in seconds, to download and extract the model that you want to host from Amazon S3 to the individual inference instance associated with this inference component.

Returns:

  • (Integer)


23067
23068
23069
23070
23071
23072
# File 'lib/aws-sdk-sagemaker/types.rb', line 23067

class InferenceComponentStartupParameters < Struct.new(
  :model_data_download_timeout_in_seconds,
  :container_startup_health_check_timeout_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end