/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace CognitoSync { namespace Model { /** * A request to post updates to records or add and delete records for a dataset and * user.

See Also:

AWS * API Reference

*/ class UpdateRecordsRequest : public CognitoSyncRequest { public: AWS_COGNITOSYNC_API UpdateRecordsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateRecords"; } AWS_COGNITOSYNC_API Aws::String SerializePayload() const override; AWS_COGNITOSYNC_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline const Aws::String& GetIdentityPoolId() const{ return m_identityPoolId; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityPoolId(const Aws::String& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = value; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityPoolId(Aws::String&& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = std::move(value); } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityPoolId(const char* value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId.assign(value); } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityPoolId(const Aws::String& value) { SetIdentityPoolId(value); return *this;} /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityPoolId(Aws::String&& value) { SetIdentityPoolId(std::move(value)); return *this;} /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityPoolId(const char* value) { SetIdentityPoolId(value); return *this;} /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline const Aws::String& GetIdentityId() const{ return m_identityId; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline bool IdentityIdHasBeenSet() const { return m_identityIdHasBeenSet; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityId(const Aws::String& value) { m_identityIdHasBeenSet = true; m_identityId = value; } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityId(Aws::String&& value) { m_identityIdHasBeenSet = true; m_identityId = std::move(value); } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline void SetIdentityId(const char* value) { m_identityIdHasBeenSet = true; m_identityId.assign(value); } /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityId(const Aws::String& value) { SetIdentityId(value); return *this;} /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityId(Aws::String&& value) { SetIdentityId(std::move(value)); return *this;} /** * A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) * created by Amazon Cognito. GUID generation is unique within a region. */ inline UpdateRecordsRequest& WithIdentityId(const char* value) { SetIdentityId(value); return *this;} /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline const Aws::String& GetDatasetName() const{ return m_datasetName; } /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline bool DatasetNameHasBeenSet() const { return m_datasetNameHasBeenSet; } /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline void SetDatasetName(const Aws::String& value) { m_datasetNameHasBeenSet = true; m_datasetName = value; } /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline void SetDatasetName(Aws::String&& value) { m_datasetNameHasBeenSet = true; m_datasetName = std::move(value); } /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline void SetDatasetName(const char* value) { m_datasetNameHasBeenSet = true; m_datasetName.assign(value); } /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline UpdateRecordsRequest& WithDatasetName(const Aws::String& value) { SetDatasetName(value); return *this;} /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline UpdateRecordsRequest& WithDatasetName(Aws::String&& value) { SetDatasetName(std::move(value)); return *this;} /** * A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' * (underscore), '-' (dash), and '.' (dot). */ inline UpdateRecordsRequest& WithDatasetName(const char* value) { SetDatasetName(value); return *this;} /** *

The unique ID generated for this device by Cognito.

*/ inline const Aws::String& GetDeviceId() const{ return m_deviceId; } /** *

The unique ID generated for this device by Cognito.

*/ inline bool DeviceIdHasBeenSet() const { return m_deviceIdHasBeenSet; } /** *

The unique ID generated for this device by Cognito.

*/ inline void SetDeviceId(const Aws::String& value) { m_deviceIdHasBeenSet = true; m_deviceId = value; } /** *

The unique ID generated for this device by Cognito.

*/ inline void SetDeviceId(Aws::String&& value) { m_deviceIdHasBeenSet = true; m_deviceId = std::move(value); } /** *

The unique ID generated for this device by Cognito.

*/ inline void SetDeviceId(const char* value) { m_deviceIdHasBeenSet = true; m_deviceId.assign(value); } /** *

The unique ID generated for this device by Cognito.

*/ inline UpdateRecordsRequest& WithDeviceId(const Aws::String& value) { SetDeviceId(value); return *this;} /** *

The unique ID generated for this device by Cognito.

*/ inline UpdateRecordsRequest& WithDeviceId(Aws::String&& value) { SetDeviceId(std::move(value)); return *this;} /** *

The unique ID generated for this device by Cognito.

*/ inline UpdateRecordsRequest& WithDeviceId(const char* value) { SetDeviceId(value); return *this;} /** * A list of patch operations. */ inline const Aws::Vector& GetRecordPatches() const{ return m_recordPatches; } /** * A list of patch operations. */ inline bool RecordPatchesHasBeenSet() const { return m_recordPatchesHasBeenSet; } /** * A list of patch operations. */ inline void SetRecordPatches(const Aws::Vector& value) { m_recordPatchesHasBeenSet = true; m_recordPatches = value; } /** * A list of patch operations. */ inline void SetRecordPatches(Aws::Vector&& value) { m_recordPatchesHasBeenSet = true; m_recordPatches = std::move(value); } /** * A list of patch operations. */ inline UpdateRecordsRequest& WithRecordPatches(const Aws::Vector& value) { SetRecordPatches(value); return *this;} /** * A list of patch operations. */ inline UpdateRecordsRequest& WithRecordPatches(Aws::Vector&& value) { SetRecordPatches(std::move(value)); return *this;} /** * A list of patch operations. */ inline UpdateRecordsRequest& AddRecordPatches(const RecordPatch& value) { m_recordPatchesHasBeenSet = true; m_recordPatches.push_back(value); return *this; } /** * A list of patch operations. */ inline UpdateRecordsRequest& AddRecordPatches(RecordPatch&& value) { m_recordPatchesHasBeenSet = true; m_recordPatches.push_back(std::move(value)); return *this; } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline const Aws::String& GetSyncSessionToken() const{ return m_syncSessionToken; } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline bool SyncSessionTokenHasBeenSet() const { return m_syncSessionTokenHasBeenSet; } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline void SetSyncSessionToken(const Aws::String& value) { m_syncSessionTokenHasBeenSet = true; m_syncSessionToken = value; } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline void SetSyncSessionToken(Aws::String&& value) { m_syncSessionTokenHasBeenSet = true; m_syncSessionToken = std::move(value); } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline void SetSyncSessionToken(const char* value) { m_syncSessionTokenHasBeenSet = true; m_syncSessionToken.assign(value); } /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline UpdateRecordsRequest& WithSyncSessionToken(const Aws::String& value) { SetSyncSessionToken(value); return *this;} /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline UpdateRecordsRequest& WithSyncSessionToken(Aws::String&& value) { SetSyncSessionToken(std::move(value)); return *this;} /** * The SyncSessionToken returned by a previous call to ListRecords for this dataset * and identity. */ inline UpdateRecordsRequest& WithSyncSessionToken(const char* value) { SetSyncSessionToken(value); return *this;} /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline const Aws::String& GetClientContext() const{ return m_clientContext; } /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline bool ClientContextHasBeenSet() const { return m_clientContextHasBeenSet; } /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline void SetClientContext(const Aws::String& value) { m_clientContextHasBeenSet = true; m_clientContext = value; } /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline void SetClientContext(Aws::String&& value) { m_clientContextHasBeenSet = true; m_clientContext = std::move(value); } /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline void SetClientContext(const char* value) { m_clientContextHasBeenSet = true; m_clientContext.assign(value); } /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline UpdateRecordsRequest& WithClientContext(const Aws::String& value) { SetClientContext(value); return *this;} /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline UpdateRecordsRequest& WithClientContext(Aws::String&& value) { SetClientContext(std::move(value)); return *this;} /** * Intended to supply a device ID that will populate the lastModifiedBy field * referenced in other methods. The ClientContext field is not yet implemented. */ inline UpdateRecordsRequest& WithClientContext(const char* value) { SetClientContext(value); return *this;} private: Aws::String m_identityPoolId; bool m_identityPoolIdHasBeenSet = false; Aws::String m_identityId; bool m_identityIdHasBeenSet = false; Aws::String m_datasetName; bool m_datasetNameHasBeenSet = false; Aws::String m_deviceId; bool m_deviceIdHasBeenSet = false; Aws::Vector m_recordPatches; bool m_recordPatchesHasBeenSet = false; Aws::String m_syncSessionToken; bool m_syncSessionTokenHasBeenSet = false; Aws::String m_clientContext; bool m_clientContextHasBeenSet = false; }; } // namespace Model } // namespace CognitoSync } // namespace Aws