235 lines
8.2 KiB
C++
235 lines
8.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cognito-sync/CognitoSync_EXPORTS.h>
|
|
#include <aws/cognito-sync/CognitoSyncRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CognitoSync
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>A request to SubscribeToDatasetRequest.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-sync-2014-06-30/SubscribeToDatasetRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_COGNITOSYNC_API SubscribeToDatasetRequest : public CognitoSyncRequest
|
|
{
|
|
public:
|
|
SubscribeToDatasetRequest();
|
|
|
|
// 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 "SubscribeToDataset"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline const Aws::String& GetIdentityPoolId() const{ return m_identityPoolId; }
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline void SetIdentityPoolId(const Aws::String& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = value; }
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline void SetIdentityPoolId(Aws::String&& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = std::move(value); }
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline void SetIdentityPoolId(const char* value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId.assign(value); }
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityPoolId(const Aws::String& value) { SetIdentityPoolId(value); return *this;}
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityPoolId(Aws::String&& value) { SetIdentityPoolId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A name-spaced GUID (for example,
|
|
* us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The
|
|
* ID of the pool to which the identity belongs.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityPoolId(const char* value) { SetIdentityPoolId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline const Aws::String& GetIdentityId() const{ return m_identityId; }
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline bool IdentityIdHasBeenSet() const { return m_identityIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline void SetIdentityId(const Aws::String& value) { m_identityIdHasBeenSet = true; m_identityId = value; }
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline void SetIdentityId(Aws::String&& value) { m_identityIdHasBeenSet = true; m_identityId = std::move(value); }
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline void SetIdentityId(const char* value) { m_identityIdHasBeenSet = true; m_identityId.assign(value); }
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityId(const Aws::String& value) { SetIdentityId(value); return *this;}
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityId(Aws::String&& value) { SetIdentityId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Unique ID for this identity.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithIdentityId(const char* value) { SetIdentityId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline const Aws::String& GetDatasetName() const{ return m_datasetName; }
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline bool DatasetNameHasBeenSet() const { return m_datasetNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline void SetDatasetName(const Aws::String& value) { m_datasetNameHasBeenSet = true; m_datasetName = value; }
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline void SetDatasetName(Aws::String&& value) { m_datasetNameHasBeenSet = true; m_datasetName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline void SetDatasetName(const char* value) { m_datasetNameHasBeenSet = true; m_datasetName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDatasetName(const Aws::String& value) { SetDatasetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDatasetName(Aws::String&& value) { SetDatasetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the dataset to subcribe to.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDatasetName(const char* value) { SetDatasetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline const Aws::String& GetDeviceId() const{ return m_deviceId; }
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline bool DeviceIdHasBeenSet() const { return m_deviceIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline void SetDeviceId(const Aws::String& value) { m_deviceIdHasBeenSet = true; m_deviceId = value; }
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline void SetDeviceId(Aws::String&& value) { m_deviceIdHasBeenSet = true; m_deviceId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline void SetDeviceId(const char* value) { m_deviceIdHasBeenSet = true; m_deviceId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDeviceId(const Aws::String& value) { SetDeviceId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDeviceId(Aws::String&& value) { SetDeviceId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID generated for this device by Cognito.</p>
|
|
*/
|
|
inline SubscribeToDatasetRequest& WithDeviceId(const char* value) { SetDeviceId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_identityPoolId;
|
|
bool m_identityPoolIdHasBeenSet;
|
|
|
|
Aws::String m_identityId;
|
|
bool m_identityIdHasBeenSet;
|
|
|
|
Aws::String m_datasetName;
|
|
bool m_datasetNameHasBeenSet;
|
|
|
|
Aws::String m_deviceId;
|
|
bool m_deviceIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CognitoSync
|
|
} // namespace Aws
|