This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lex-models/include/aws/lex-models/model/GetIntentsRequest.h

202 lines
7.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lex-models/LexModelBuildingService_EXPORTS.h>
#include <aws/lex-models/LexModelBuildingServiceRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Http
{
class URI;
} //namespace Http
namespace LexModelBuildingService
{
namespace Model
{
/**
*/
class AWS_LEXMODELBUILDINGSERVICE_API GetIntentsRequest : public LexModelBuildingServiceRequest
{
public:
GetIntentsRequest();
// 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 "GetIntents"; }
Aws::String SerializePayload() const override;
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline GetIntentsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline GetIntentsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>A pagination token that fetches the next page of intents. If the response to
* this API call is truncated, Amazon Lex returns a pagination token in the
* response. To fetch the next page of intents, specify the pagination token in the
* next request. </p>
*/
inline GetIntentsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
/**
* <p>The maximum number of intents to return in the response. The default is
* 10.</p>
*/
inline int GetMaxResults() const{ return m_maxResults; }
/**
* <p>The maximum number of intents to return in the response. The default is
* 10.</p>
*/
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
/**
* <p>The maximum number of intents to return in the response. The default is
* 10.</p>
*/
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
/**
* <p>The maximum number of intents to return in the response. The default is
* 10.</p>
*/
inline GetIntentsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline const Aws::String& GetNameContains() const{ return m_nameContains; }
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline bool NameContainsHasBeenSet() const { return m_nameContainsHasBeenSet; }
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline void SetNameContains(const Aws::String& value) { m_nameContainsHasBeenSet = true; m_nameContains = value; }
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline void SetNameContains(Aws::String&& value) { m_nameContainsHasBeenSet = true; m_nameContains = std::move(value); }
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline void SetNameContains(const char* value) { m_nameContainsHasBeenSet = true; m_nameContains.assign(value); }
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline GetIntentsRequest& WithNameContains(const Aws::String& value) { SetNameContains(value); return *this;}
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline GetIntentsRequest& WithNameContains(Aws::String&& value) { SetNameContains(std::move(value)); return *this;}
/**
* <p>Substring to match in intent names. An intent will be returned if any part of
* its name matches the substring. For example, "xyz" matches both "xyzabc" and
* "abcxyz."</p>
*/
inline GetIntentsRequest& WithNameContains(const char* value) { SetNameContains(value); return *this;}
private:
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
int m_maxResults;
bool m_maxResultsHasBeenSet;
Aws::String m_nameContains;
bool m_nameContainsHasBeenSet;
};
} // namespace Model
} // namespace LexModelBuildingService
} // namespace Aws