95 lines
3.7 KiB
C
95 lines
3.7 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
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The input for the GetBulkPublishDetails operation.<p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-sync-2014-06-30/GetBulkPublishDetailsRequest">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_COGNITOSYNC_API GetBulkPublishDetailsRequest : public CognitoSyncRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetBulkPublishDetailsRequest();
|
|||
|
|
|
|||
|
|
// 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 "GetBulkPublishDetails"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() 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 GetBulkPublishDetailsRequest& 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 GetBulkPublishDetailsRequest& 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 GetBulkPublishDetailsRequest& WithIdentityPoolId(const char* value) { SetIdentityPoolId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_identityPoolId;
|
|||
|
|
bool m_identityPoolIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CognitoSync
|
|||
|
|
} // namespace Aws
|