All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.mobileconnectors.cognito.package-info Maven / Gradle / Ivy

/**
 * Primary classes for interacting with the AmazonCognitoSync mobile connector, 
 * which is a high level client that provides data synchronization across multiple mobile devices and 
 * powered by Amazon Cognito Identity service, Cognito Sync service, and Security Token
 * Service (STS).
 *
 * 
 * Here is a sample usage:
 * 
 * 
 * CognitoCachingCredentialsProvider provider = new CognitoCachingCredentialsProvider(
 *         context, awsAccountId, identityPoolId, unauthRoleArn, authRoleArn, Regions.US_EAST_1);
 * CognitoSyncManager client = new CognitoSyncManager(context, identityPoolId, provider);
 * 
 * Dataset dataset = client.openOrCreateDataset("default_dataset");
 * dataset.put("high_score", "100");
 * dataset.synchronize(new SyncCallback() {
 *     // override callbacks
 * });
 * 
* * Please refer to {@link com.amazonaws.mobileconnectors.cognito.CognitoSyncManager} and * {@link com.amazonaws.mobileconnectors.cognito.Dataset} for more details. */ package com.amazonaws.mobileconnectors.cognito;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy