Class: Aws::SageMaker::Types::EndpointInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::EndpointInput
- Defined in:
- gems/aws-sdk-sagemaker/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
features_attribute: "String",
inference_attribute: "String",
probability_attribute: "String",
probability_threshold_attribute: 1.0,
start_time_offset: "MonitoringTimeOffsetString",
end_time_offset: "MonitoringTimeOffsetString",
}
Input object for the endpoint
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time_offset ⇒ String
If specified, monitoring jobs substract this time from the end time.
-
#endpoint_name ⇒ String
An endpoint in customer's account which has enabled
DataCaptureConfig
enabled. -
#features_attribute ⇒ String
The attributes of the input data that are the input features.
-
#inference_attribute ⇒ String
The attribute of the input data that represents the ground truth label.
-
#local_path ⇒ String
Path to the filesystem where the endpoint data is available to the container.
-
#probability_attribute ⇒ String
In a classification problem, the attribute that represents the class probability.
-
#probability_threshold_attribute ⇒ Float
The threshold for the class probability to be evaluated as a positive result.
-
#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
orFile
is used as the input mode for transferring data for the monitoring job. -
#start_time_offset ⇒ String
If specified, monitoring jobs substract this time from the start time.
Instance Attribute Details
#end_time_offset ⇒ String
If specified, monitoring jobs substract this time from the end time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#endpoint_name ⇒ String
An endpoint in customer's account which has enabled
DataCaptureConfig
enabled.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#features_attribute ⇒ String
The attributes of the input data that are the input features.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#inference_attribute ⇒ String
The attribute of the input data that represents the ground truth label.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#local_path ⇒ String
Path to the filesystem where the endpoint data is available to the container.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#probability_attribute ⇒ String
In a classification problem, the attribute that represents the class probability.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#probability_threshold_attribute ⇒ Float
The threshold for the class probability to be evaluated as a positive result.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] 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. Defaults to FullyReplicated
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#s3_input_mode ⇒ String
Whether the Pipe
or File
is used as the input mode for
transferring 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
.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |
#start_time_offset ⇒ String
If specified, monitoring jobs substract this time from the start time. For information about using offsets for scheduling monitoring jobs, see Schedule Model Quality Monitoring Jobs.
18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 18608 class EndpointInput < Struct.new( :endpoint_name, :local_path, :s3_input_mode, :s3_data_distribution_type, :features_attribute, :inference_attribute, :probability_attribute, :probability_threshold_attribute, :start_time_offset, :end_time_offset) SENSITIVE = [] include Aws::Structure end |