Class DeleteDatasetResult
- java.lang.Object
-
- com.amazonaws.services.cognitosync.model.DeleteDatasetResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DeleteDatasetResult extends Object implements Serializable, Cloneable
Response to a successful DeleteDataset request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteDatasetResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteDatasetResult
clone()
boolean
equals(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.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.
-
-
-
Method Detail
-
setDataset
public void setDataset(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.- Parameters:
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.
-
getDataset
public Dataset getDataset()
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.- Returns:
- 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.
-
withDataset
public DeleteDatasetResult withDataset(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.- Parameters:
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.- 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 DeleteDatasetResult clone()
-
-