/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input for the ListThingPrincipal operation.See Also:
AWS
* API Reference
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
To retrieve the next set of results, the nextToken
value from a
* previous response; otherwise null to receive the first set of
* results.
The maximum number of results to return in this operation.
*/ inline int GetMaxResults() const{ return m_maxResults; } /** *The maximum number of results to return in this operation.
*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *The maximum number of results to return in this operation.
*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *The maximum number of results to return in this operation.
*/ inline ListThingPrincipalsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *The name of the thing.
*/ inline const Aws::String& GetThingName() const{ return m_thingName; } /** *The name of the thing.
*/ inline bool ThingNameHasBeenSet() const { return m_thingNameHasBeenSet; } /** *The name of the thing.
*/ inline void SetThingName(const Aws::String& value) { m_thingNameHasBeenSet = true; m_thingName = value; } /** *The name of the thing.
*/ inline void SetThingName(Aws::String&& value) { m_thingNameHasBeenSet = true; m_thingName = std::move(value); } /** *The name of the thing.
*/ inline void SetThingName(const char* value) { m_thingNameHasBeenSet = true; m_thingName.assign(value); } /** *The name of the thing.
*/ inline ListThingPrincipalsRequest& WithThingName(const Aws::String& value) { SetThingName(value); return *this;} /** *The name of the thing.
*/ inline ListThingPrincipalsRequest& WithThingName(Aws::String&& value) { SetThingName(std::move(value)); return *this;} /** *The name of the thing.
*/ inline ListThingPrincipalsRequest& WithThingName(const char* value) { SetThingName(value); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_thingName; bool m_thingNameHasBeenSet = false; }; } // namespace Model } // namespace IoT } // namespace Aws