Class: Aws::CognitoSync::Types::DescribeDatasetResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoSync::Types::DescribeDatasetResponse
- Defined in:
- gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb
Overview
Response to a successful DescribeDataset request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset ⇒ Types::Dataset
Meta data for a collection of data for an identity.
Instance Attribute Details
#dataset ⇒ Types::Dataset
Meta data for a collection of data for an identity. An identity can have multiple datasets. A dataset 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.
248 249 250 251 252 |
# File 'gems/aws-sdk-cognitosync/lib/aws-sdk-cognitosync/types.rb', line 248 class DescribeDatasetResponse < Struct.new( :dataset) SENSITIVE = [] include Aws::Structure end |