Class: Aws::SageMaker::Types::EndpointInput

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

Overview

Note:

When making an API call, you may pass EndpointInput data as a hash:

{
  endpoint_name: "EndpointName", # required
  local_path: "ProcessingLocalPath", # required
  s3_input_mode: "Pipe", # accepts Pipe, File
  s3_data_distribution_type: "FullyReplicated", # accepts FullyReplicated, ShardedByS3Key
}

Input object for the endpoint

Instance Attribute Summary collapse

Instance Attribute Details

#endpoint_nameString

An endpoint in customer’s account which has enabled ‘DataCaptureConfig` enabled.

Returns:

  • (String)


8809
8810
8811
8812
8813
8814
8815
# File 'lib/aws-sdk-sagemaker/types.rb', line 8809

class EndpointInput < Struct.new(
  :endpoint_name,
  :local_path,
  :s3_input_mode,
  :s3_data_distribution_type)
  include Aws::Structure
end

#local_pathString

Path to the filesystem where the endpoint data is available to the container.

Returns:

  • (String)


8809
8810
8811
8812
8813
8814
8815
# File 'lib/aws-sdk-sagemaker/types.rb', line 8809

class EndpointInput < Struct.new(
  :endpoint_name,
  :local_path,
  :s3_input_mode,
  :s3_data_distribution_type)
  include Aws::Structure
end

#s3_data_distribution_typeString

Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to ‘FullyReplicated`

Returns:

  • (String)


8809
8810
8811
8812
8813
8814
8815
# File 'lib/aws-sdk-sagemaker/types.rb', line 8809

class EndpointInput < Struct.new(
  :endpoint_name,
  :local_path,
  :s3_input_mode,
  :s3_data_distribution_type)
  include Aws::Structure
end

#s3_input_modeString

Whether the ‘Pipe` or `File` is used as the input mode for transfering data for the monitoring job. `Pipe` mode is recommended for large datasets. `File` mode is useful for small files that fit in memory. Defaults to `File`.

Returns:

  • (String)


8809
8810
8811
8812
8813
8814
8815
# File 'lib/aws-sdk-sagemaker/types.rb', line 8809

class EndpointInput < Struct.new(
  :endpoint_name,
  :local_path,
  :s3_input_mode,
  :s3_data_distribution_type)
  include Aws::Structure
end