/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoTFleetWise { namespace Model { class ListDecoderManifestNetworkInterfacesResult { public: AWS_IOTFLEETWISE_API ListDecoderManifestNetworkInterfacesResult(); AWS_IOTFLEETWISE_API ListDecoderManifestNetworkInterfacesResult(const Aws::AmazonWebServiceResult& result); AWS_IOTFLEETWISE_API ListDecoderManifestNetworkInterfacesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of information about network interfaces.

*/ inline const Aws::Vector& GetNetworkInterfaces() const{ return m_networkInterfaces; } /** *

A list of information about network interfaces.

*/ inline void SetNetworkInterfaces(const Aws::Vector& value) { m_networkInterfaces = value; } /** *

A list of information about network interfaces.

*/ inline void SetNetworkInterfaces(Aws::Vector&& value) { m_networkInterfaces = std::move(value); } /** *

A list of information about network interfaces.

*/ inline ListDecoderManifestNetworkInterfacesResult& WithNetworkInterfaces(const Aws::Vector& value) { SetNetworkInterfaces(value); return *this;} /** *

A list of information about network interfaces.

*/ inline ListDecoderManifestNetworkInterfacesResult& WithNetworkInterfaces(Aws::Vector&& value) { SetNetworkInterfaces(std::move(value)); return *this;} /** *

A list of information about network interfaces.

*/ inline ListDecoderManifestNetworkInterfacesResult& AddNetworkInterfaces(const NetworkInterface& value) { m_networkInterfaces.push_back(value); return *this; } /** *

A list of information about network interfaces.

*/ inline ListDecoderManifestNetworkInterfacesResult& AddNetworkInterfaces(NetworkInterface&& value) { m_networkInterfaces.push_back(std::move(value)); return *this; } /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline ListDecoderManifestNetworkInterfacesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline ListDecoderManifestNetworkInterfacesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token to retrieve the next set of results, or null if there * are no more results.

*/ inline ListDecoderManifestNetworkInterfacesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListDecoderManifestNetworkInterfacesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListDecoderManifestNetworkInterfacesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListDecoderManifestNetworkInterfacesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_networkInterfaces; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws