Class: Aws::SageMaker::Types::DataQualityAppSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::DataQualityAppSpecification
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass DataQualityAppSpecification data as a hash:
{
image_uri: "ImageUri", # required
container_entrypoint: ["ContainerEntrypointString"],
container_arguments: ["ContainerArgument"],
record_preprocessor_source_uri: "S3Uri",
post_analytics_processor_source_uri: "S3Uri",
environment: {
"ProcessingEnvironmentKey" => "ProcessingEnvironmentValue",
},
}
Information about the container that a data quality monitoring job runs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_arguments ⇒ Array<String>
The arguments to send to the container that the monitoring job runs.
-
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a monitoring job.
-
#environment ⇒ Hash<String,String>
Sets the environment variables in the container that the monitoring job runs.
-
#image_uri ⇒ String
The container image that the data quality monitoring job runs.
-
#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>
The arguments to send to the container that the monitoring job runs.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a monitoring job.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#environment ⇒ Hash<String,String>
Sets the environment variables in the container that the monitoring job runs.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) SENSITIVE = [] include Aws::Structure end |
#image_uri ⇒ String
The container image that the data quality monitoring job runs.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) 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.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) 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 flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 10507 class DataQualityAppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments, :record_preprocessor_source_uri, :post_analytics_processor_source_uri, :environment) SENSITIVE = [] include Aws::Structure end |