Class: Aws::SageMaker::Types::EndpointInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::EndpointInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
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
-
#endpoint_name ⇒ String
An endpoint in customer’s account which has enabled ‘DataCaptureConfig` enabled.
-
#local_path ⇒ String
Path to the filesystem where the endpoint data is available to the container.
-
#s3_data_distribution_type ⇒ String
Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.
-
#s3_input_mode ⇒ String
Whether the ‘Pipe` or `File` is used as the input mode for transfering data for the monitoring job.
Instance Attribute Details
#endpoint_name ⇒ String
An endpoint in customer’s account which has enabled ‘DataCaptureConfig` enabled.
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_path ⇒ String
Path to the filesystem where the endpoint data is available to the container.
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_type ⇒ String
Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to ‘FullyReplicated`
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_mode ⇒ String
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`.
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 |