@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class SchemaColumn extends Object implements Serializable, Cloneable, StructuredPojo
A key-value pair representing a column and data type that this transform can run against. The Schema
parameter of the MLTransform
may contain up to 100 of these structures.
Constructor and Description |
---|
SchemaColumn() |
Modifier and Type | Method and Description |
---|---|
SchemaColumn |
clone() |
boolean |
equals(Object obj) |
String |
getDataType()
The type of data in the column.
|
String |
getName()
The name of the column.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setDataType(String dataType)
The type of data in the column.
|
void |
setName(String name)
The name of the column.
|
String |
toString()
Returns a string representation of this object.
|
SchemaColumn |
withDataType(String dataType)
The type of data in the column.
|
SchemaColumn |
withName(String name)
The name of the column.
|
public void setName(String name)
The name of the column.
name
- The name of the column.public String getName()
The name of the column.
public SchemaColumn withName(String name)
The name of the column.
name
- The name of the column.public void setDataType(String dataType)
The type of data in the column.
dataType
- The type of data in the column.public String getDataType()
The type of data in the column.
public SchemaColumn withDataType(String dataType)
The type of data in the column.
dataType
- The type of data in the column.public String toString()
toString
in class Object
Object.toString()
public SchemaColumn clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.