public class DeleteDatasetResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private Dataset |
dataset
A collection of data for an identity pool.
|
Constructor and Description |
---|
DeleteDatasetResult() |
Modifier and Type | Method and Description |
---|---|
DeleteDatasetResult |
clone() |
boolean |
equals(java.lang.Object obj) |
Dataset |
getDataset()
A collection of data for an identity pool.
|
int |
hashCode() |
void |
setDataset(Dataset dataset)
A collection of data for an identity pool.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DeleteDatasetResult |
withDataset(Dataset dataset)
A collection of data for an identity pool.
|
private Dataset dataset
public void setDataset(Dataset dataset)
dataset
- A collection of data for an identity pool. An identity pool can
have multiple datasets. A dataset is per identity and can be
general or associated with a particular entity in an application
(like a saved game). Datasets are automatically created if they
don't exist. Data is synced by dataset, and a dataset can hold up
to 1MB of key-value pairs.public Dataset getDataset()
public DeleteDatasetResult withDataset(Dataset dataset)
dataset
- A collection of data for an identity pool. An identity pool can
have multiple datasets. A dataset is per identity and can be
general or associated with a particular entity in an application
(like a saved game). Datasets are automatically created if they
don't exist. Data is synced by dataset, and a dataset can hold up
to 1MB of key-value pairs.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DeleteDatasetResult clone()
clone
in class java.lang.Object