Class: Aws::SageMaker::Types::MonitoringAppSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::MonitoringAppSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Container image configuration object for the monitoring job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_arguments  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of arguments for the container used to run the monitoring job.
 - 
  
    
      #container_entrypoint  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the entrypoint for a container used to run the monitoring job.
 - 
  
    
      #image_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The container image to be run by the monitoring job.
 - 
  
    
      #post_analytics_processor_source_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An Amazon S3 URI to a script that is called after analysis has been performed.
 - 
  
    
      #record_preprocessor_source_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An Amazon S3 URI to a script that is called per row prior to running analysis.
 
Instance Attribute Details
#container_arguments ⇒ Array<String>
An array of arguments for the container used to run the monitoring job.
      35537 35538 35539 35540 35541 35542 35543 35544 35545  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35537 class MonitoringAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#container_entrypoint ⇒ Array<String>
Specifies the entrypoint for a container used to run the monitoring job.
      35537 35538 35539 35540 35541 35542 35543 35544 35545  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35537 class MonitoringAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#image_uri ⇒ String
The container image to be run by the monitoring job.
      35537 35538 35539 35540 35541 35542 35543 35544 35545  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35537 class MonitoringAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#post_analytics_processor_source_uri ⇒ String
An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
      35537 35538 35539 35540 35541 35542 35543 35544 35545  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35537 class MonitoringAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri) SENSITIVE = [] include Aws::Structure end  | 
  
#record_preprocessor_source_uri ⇒ String
An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
      35537 35538 35539 35540 35541 35542 35543 35544 35545  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35537 class MonitoringAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri) SENSITIVE = [] include Aws::Structure end  |