Class UpdateDataSourceResult
- java.lang.Object
-
- com.amazonaws.services.machinelearning.model.UpdateDataSourceResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UpdateDataSourceResult extends Object implements Serializable, Cloneable
Represents the output of an UpdateDataSource operation.
You can see the updated content by using the GetBatchPrediction operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateDataSourceResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateDataSourceResult
clone()
boolean
equals(Object obj)
String
getDataSourceId()
The ID assigned to theDataSource
during creation.int
hashCode()
void
setDataSourceId(String dataSourceId)
The ID assigned to theDataSource
during creation.String
toString()
Returns a string representation of this object; useful for testing and debugging.UpdateDataSourceResult
withDataSourceId(String dataSourceId)
The ID assigned to theDataSource
during creation.
-
-
-
Method Detail
-
setDataSourceId
public void setDataSourceId(String dataSourceId)
The ID assigned to the
DataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.- Parameters:
dataSourceId
- The ID assigned to theDataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.
-
getDataSourceId
public String getDataSourceId()
The ID assigned to the
DataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.- Returns:
- The ID assigned to the
DataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.
-
withDataSourceId
public UpdateDataSourceResult withDataSourceId(String dataSourceId)
The ID assigned to the
DataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.- Parameters:
dataSourceId
- The ID assigned to theDataSource
during creation. This value should be identical to the value of theDataSourceID
in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UpdateDataSourceResult clone()
-
-