/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace Greengrass { namespace Model { /** */ class GetConnectorDefinitionVersionRequest : public GreengrassRequest { public: AWS_GREENGRASS_API GetConnectorDefinitionVersionRequest(); // 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 "GetConnectorDefinitionVersion"; } AWS_GREENGRASS_API Aws::String SerializePayload() const override; AWS_GREENGRASS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** * The ID of the connector definition. */ inline const Aws::String& GetConnectorDefinitionId() const{ return m_connectorDefinitionId; } /** * The ID of the connector definition. */ inline bool ConnectorDefinitionIdHasBeenSet() const { return m_connectorDefinitionIdHasBeenSet; } /** * The ID of the connector definition. */ inline void SetConnectorDefinitionId(const Aws::String& value) { m_connectorDefinitionIdHasBeenSet = true; m_connectorDefinitionId = value; } /** * The ID of the connector definition. */ inline void SetConnectorDefinitionId(Aws::String&& value) { m_connectorDefinitionIdHasBeenSet = true; m_connectorDefinitionId = std::move(value); } /** * The ID of the connector definition. */ inline void SetConnectorDefinitionId(const char* value) { m_connectorDefinitionIdHasBeenSet = true; m_connectorDefinitionId.assign(value); } /** * The ID of the connector definition. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionId(const Aws::String& value) { SetConnectorDefinitionId(value); return *this;} /** * The ID of the connector definition. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionId(Aws::String&& value) { SetConnectorDefinitionId(std::move(value)); return *this;} /** * The ID of the connector definition. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionId(const char* value) { SetConnectorDefinitionId(value); return *this;} /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline const Aws::String& GetConnectorDefinitionVersionId() const{ return m_connectorDefinitionVersionId; } /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline bool ConnectorDefinitionVersionIdHasBeenSet() const { return m_connectorDefinitionVersionIdHasBeenSet; } /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline void SetConnectorDefinitionVersionId(const Aws::String& value) { m_connectorDefinitionVersionIdHasBeenSet = true; m_connectorDefinitionVersionId = value; } /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline void SetConnectorDefinitionVersionId(Aws::String&& value) { m_connectorDefinitionVersionIdHasBeenSet = true; m_connectorDefinitionVersionId = std::move(value); } /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline void SetConnectorDefinitionVersionId(const char* value) { m_connectorDefinitionVersionIdHasBeenSet = true; m_connectorDefinitionVersionId.assign(value); } /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionVersionId(const Aws::String& value) { SetConnectorDefinitionVersionId(value); return *this;} /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionVersionId(Aws::String&& value) { SetConnectorDefinitionVersionId(std::move(value)); return *this;} /** * The ID of the connector definition version. This value maps to the ''Version'' * property of the corresponding ''VersionInformation'' object, which is returned * by ''ListConnectorDefinitionVersions'' requests. If the version is the last one * that was associated with a connector definition, the value also maps to the * ''LatestVersion'' property of the corresponding ''DefinitionInformation'' * object. */ inline GetConnectorDefinitionVersionRequest& WithConnectorDefinitionVersionId(const char* value) { SetConnectorDefinitionVersionId(value); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline GetConnectorDefinitionVersionRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline GetConnectorDefinitionVersionRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * The token for the next set of results, or ''null'' if there are no additional * results. */ inline GetConnectorDefinitionVersionRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_connectorDefinitionId; bool m_connectorDefinitionIdHasBeenSet = false; Aws::String m_connectorDefinitionVersionId; bool m_connectorDefinitionVersionIdHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Greengrass } // namespace Aws