You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::AutoMLChannel

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AutoMLChannel as input to an Aws::Client method, you can use a vanilla Hash:

{
  data_source: { # required
    s3_data_source: { # required
      s3_data_type: "ManifestFile", # required, accepts ManifestFile, S3Prefix
      s3_uri: "S3Uri", # required
    },
  },
  compression_type: "None", # accepts None, Gzip
  target_attribute_name: "TargetAttributeName", # required
}

Similar to Channel. A channel is a named input source that training algorithms can consume. Refer to Channel for detailed descriptions.

Instance Attribute Summary collapse

Instance Attribute Details

#compression_typeString

You can use Gzip or None. The default value is None.

Possible values:

  • None
  • Gzip

Returns:

  • (String)

    You can use Gzip or None.

#data_sourceTypes::AutoMLDataSource

The data source.

Returns:

#target_attribute_nameString

The name of the target variable in supervised learning, a.k.a. \'y\'.

Returns:

  • (String)

    The name of the target variable in supervised learning, a.k.a.