The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::SageMaker::TransformJobDefinition

USAGE

This class represents one of two things:

Arguments in a call to a service

Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.

As an example, if Att1 is expected to be a Paws::SageMaker::TransformJobDefinition object:

  $service_obj->Method(Att1 => { BatchStrategy => $value, ..., TransformResources => $value  });

Results returned from an API call

Use accessors for each attribute. If Att1 is expected to be an Paws::SageMaker::TransformJobDefinition object:

  $result = $service_obj->Method(...);
  $result->Att1->BatchStrategy

DESCRIPTION

Defines the input needed to run a transform job using the inference specification specified in the algorithm.

ATTRIBUTES

BatchStrategy => Str

A string that determines the number of records included in a single mini-batch.

SingleRecord means only one record is used per mini-batch. MultiRecord means a mini-batch is set to contain as many records that can fit within the MaxPayloadInMB limit.

Environment => Paws::SageMaker::TransformEnvironmentMap

The environment variables to set in the Docker container. We support up to 16 key and values entries in the map.

MaxConcurrentTransforms => Int

The maximum number of parallel requests that can be sent to each instance in a transform job. The default value is 1.

MaxPayloadInMB => Int

The maximum payload size allowed, in MB. A payload is the data portion of a record (without metadata).

REQUIRED TransformInput => Paws::SageMaker::TransformInput

A description of the input source and the way the transform job consumes it.

REQUIRED TransformOutput => Paws::SageMaker::TransformOutput

Identifies the Amazon S3 location where you want Amazon SageMaker to save the results from the transform job.

REQUIRED TransformResources => Paws::SageMaker::TransformResources

Identifies the ML compute instances for the transform job.

SEE ALSO

This class forms part of Paws, describing an object used in Paws::SageMaker

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues