[][src]Struct rusoto_sagemaker::CreateTransformJobRequest

pub struct CreateTransformJobRequest {
    pub batch_strategy: Option<String>,
    pub environment: Option<HashMap<String, String>>,
    pub max_concurrent_transforms: Option<i64>,
    pub max_payload_in_mb: Option<i64>,
    pub model_name: String,
    pub tags: Option<Vec<Tag>>,
    pub transform_input: TransformInput,
    pub transform_job_name: String,
    pub transform_output: TransformOutput,
    pub transform_resources: TransformResources,
}

Fields

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.

Batch transform will automatically split your input data into whatever payload size is specified if you set SplitType to Line and BatchStrategy to MultiRecord. There's no need to split the dataset into smaller files or to use larger payload sizes unless the records in your dataset are very large.

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

The maximum number of parallel requests that can be sent to each instance in a transform job. This is good for algorithms that implement multiple workers on larger instances . The default value is 1. To allow Amazon SageMaker to determine the appropriate number for MaxConcurrentTransforms, set the value to 0.

The maximum payload size allowed, in MB. A payload is the data portion of a record (without metadata). The value in MaxPayloadInMB must be greater or equal to the size of a single record. You can approximate the size of a record by dividing the size of your dataset by the number of records. Then multiply this value by the number of records you want in a mini-batch. It is recommended to enter a value slightly larger than this to ensure the records fit within the maximum payload size. The default value is 6 MB. For an unlimited payload size, set the value to 0.

The name of the model that you want to use for the transform job. ModelName must be the name of an existing Amazon SageMaker model within an AWS Region in an AWS account.

An array of key-value pairs. Adding tags is optional. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

Describes the input source and the way the transform job consumes it.

The name of the transform job. The name must be unique within an AWS Region in an AWS account.

Describes the results of the transform job.

Describes the resources, including ML instance types and ML instance count, to use for the transform job.

Trait Implementations

impl Clone for CreateTransformJobRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateTransformJobRequest
[src]

impl PartialEq<CreateTransformJobRequest> for CreateTransformJobRequest
[src]

impl Debug for CreateTransformJobRequest
[src]

impl Serialize for CreateTransformJobRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T