/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A request for a list of the configured Cognito EventsSee
* Also:
AWS
* API Reference
The Cognito Identity Pool ID for the request
*/ inline const Aws::String& GetIdentityPoolId() const{ return m_identityPoolId; } /** *The Cognito Identity Pool ID for the request
*/ inline bool IdentityPoolIdHasBeenSet() const { return m_identityPoolIdHasBeenSet; } /** *The Cognito Identity Pool ID for the request
*/ inline void SetIdentityPoolId(const Aws::String& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = value; } /** *The Cognito Identity Pool ID for the request
*/ inline void SetIdentityPoolId(Aws::String&& value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId = std::move(value); } /** *The Cognito Identity Pool ID for the request
*/ inline void SetIdentityPoolId(const char* value) { m_identityPoolIdHasBeenSet = true; m_identityPoolId.assign(value); } /** *The Cognito Identity Pool ID for the request
*/ inline GetCognitoEventsRequest& WithIdentityPoolId(const Aws::String& value) { SetIdentityPoolId(value); return *this;} /** *The Cognito Identity Pool ID for the request
*/ inline GetCognitoEventsRequest& WithIdentityPoolId(Aws::String&& value) { SetIdentityPoolId(std::move(value)); return *this;} /** *The Cognito Identity Pool ID for the request
*/ inline GetCognitoEventsRequest& WithIdentityPoolId(const char* value) { SetIdentityPoolId(value); return *this;} private: Aws::String m_identityPoolId; bool m_identityPoolIdHasBeenSet = false; }; } // namespace Model } // namespace CognitoSync } // namespace Aws