Class: Aws::SageMaker::Types::AsyncInferenceNotificationConfig

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

Overview

Specifies the configuration for notifications of inference results for asynchronous inference.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_topicString

Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.

Returns:

  • (String)


1617
1618
1619
1620
1621
1622
1623
# File 'lib/aws-sdk-sagemaker/types.rb', line 1617

class AsyncInferenceNotificationConfig < Struct.new(
  :success_topic,
  :error_topic,
  :include_inference_response_in)
  SENSITIVE = []
  include Aws::Structure
end

#include_inference_response_inArray<String>

The Amazon SNS topics where you want the inference response to be included.

<note markdown=“1”> The inference response is included only if the response size is less than or equal to 128 KB.

</note>

Returns:

  • (Array<String>)


1617
1618
1619
1620
1621
1622
1623
# File 'lib/aws-sdk-sagemaker/types.rb', line 1617

class AsyncInferenceNotificationConfig < Struct.new(
  :success_topic,
  :error_topic,
  :include_inference_response_in)
  SENSITIVE = []
  include Aws::Structure
end

#success_topicString

Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.

Returns:

  • (String)


1617
1618
1619
1620
1621
1622
1623
# File 'lib/aws-sdk-sagemaker/types.rb', line 1617

class AsyncInferenceNotificationConfig < Struct.new(
  :success_topic,
  :error_topic,
  :include_inference_response_in)
  SENSITIVE = []
  include Aws::Structure
end