/** * 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 IoTSiteWise { namespace Model { /** */ class AWS_IOTSITEWISE_API DescribeGatewayCapabilityConfigurationRequest : public IoTSiteWiseRequest { public: DescribeGatewayCapabilityConfigurationRequest(); // 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 "DescribeGatewayCapabilityConfiguration"; } Aws::String SerializePayload() const override; /** *

The ID of the gateway that defines the capability configuration.

*/ inline const Aws::String& GetGatewayId() const{ return m_gatewayId; } /** *

The ID of the gateway that defines the capability configuration.

*/ inline bool GatewayIdHasBeenSet() const { return m_gatewayIdHasBeenSet; } /** *

The ID of the gateway that defines the capability configuration.

*/ inline void SetGatewayId(const Aws::String& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = value; } /** *

The ID of the gateway that defines the capability configuration.

*/ inline void SetGatewayId(Aws::String&& value) { m_gatewayIdHasBeenSet = true; m_gatewayId = std::move(value); } /** *

The ID of the gateway that defines the capability configuration.

*/ inline void SetGatewayId(const char* value) { m_gatewayIdHasBeenSet = true; m_gatewayId.assign(value); } /** *

The ID of the gateway that defines the capability configuration.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithGatewayId(const Aws::String& value) { SetGatewayId(value); return *this;} /** *

The ID of the gateway that defines the capability configuration.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithGatewayId(Aws::String&& value) { SetGatewayId(std::move(value)); return *this;} /** *

The ID of the gateway that defines the capability configuration.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithGatewayId(const char* value) { SetGatewayId(value); return *this;} /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline const Aws::String& GetCapabilityNamespace() const{ return m_capabilityNamespace; } /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline bool CapabilityNamespaceHasBeenSet() const { return m_capabilityNamespaceHasBeenSet; } /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline void SetCapabilityNamespace(const Aws::String& value) { m_capabilityNamespaceHasBeenSet = true; m_capabilityNamespace = value; } /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline void SetCapabilityNamespace(Aws::String&& value) { m_capabilityNamespaceHasBeenSet = true; m_capabilityNamespace = std::move(value); } /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline void SetCapabilityNamespace(const char* value) { m_capabilityNamespaceHasBeenSet = true; m_capabilityNamespace.assign(value); } /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithCapabilityNamespace(const Aws::String& value) { SetCapabilityNamespace(value); return *this;} /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithCapabilityNamespace(Aws::String&& value) { SetCapabilityNamespace(std::move(value)); return *this;} /** *

The namespace of the capability configuration. For example, if you configure * OPC-UA sources from the AWS IoT SiteWise console, your OPC-UA capability * configuration has the namespace iotsitewise:opcuacollector:version, * where version is a number such as 1.

*/ inline DescribeGatewayCapabilityConfigurationRequest& WithCapabilityNamespace(const char* value) { SetCapabilityNamespace(value); return *this;} private: Aws::String m_gatewayId; bool m_gatewayIdHasBeenSet; Aws::String m_capabilityNamespace; bool m_capabilityNamespaceHasBeenSet; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws