AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RouteAnalysisEndpointOptionsSpecification.h
1
6#pragma once
7#include <aws/networkmanager/NetworkManager_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace NetworkManager
22{
23namespace Model
24{
25
32 {
33 public:
37 AWS_NETWORKMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetTransitGatewayAttachmentArn() const{ return m_transitGatewayAttachmentArn; }
45 inline bool TransitGatewayAttachmentArnHasBeenSet() const { return m_transitGatewayAttachmentArnHasBeenSet; }
46 inline void SetTransitGatewayAttachmentArn(const Aws::String& value) { m_transitGatewayAttachmentArnHasBeenSet = true; m_transitGatewayAttachmentArn = value; }
47 inline void SetTransitGatewayAttachmentArn(Aws::String&& value) { m_transitGatewayAttachmentArnHasBeenSet = true; m_transitGatewayAttachmentArn = std::move(value); }
48 inline void SetTransitGatewayAttachmentArn(const char* value) { m_transitGatewayAttachmentArnHasBeenSet = true; m_transitGatewayAttachmentArn.assign(value); }
53
55
58 inline const Aws::String& GetIpAddress() const{ return m_ipAddress; }
59 inline bool IpAddressHasBeenSet() const { return m_ipAddressHasBeenSet; }
60 inline void SetIpAddress(const Aws::String& value) { m_ipAddressHasBeenSet = true; m_ipAddress = value; }
61 inline void SetIpAddress(Aws::String&& value) { m_ipAddressHasBeenSet = true; m_ipAddress = std::move(value); }
62 inline void SetIpAddress(const char* value) { m_ipAddressHasBeenSet = true; m_ipAddress.assign(value); }
64 inline RouteAnalysisEndpointOptionsSpecification& WithIpAddress(Aws::String&& value) { SetIpAddress(std::move(value)); return *this;}
65 inline RouteAnalysisEndpointOptionsSpecification& WithIpAddress(const char* value) { SetIpAddress(value); return *this;}
67 private:
68
69 Aws::String m_transitGatewayAttachmentArn;
70 bool m_transitGatewayAttachmentArnHasBeenSet = false;
71
72 Aws::String m_ipAddress;
73 bool m_ipAddressHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace NetworkManager
78} // namespace Aws
AWS_NETWORKMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
RouteAnalysisEndpointOptionsSpecification & WithIpAddress(Aws::String &&value)
AWS_NETWORKMANAGER_API RouteAnalysisEndpointOptionsSpecification & operator=(Aws::Utils::Json::JsonView jsonValue)
RouteAnalysisEndpointOptionsSpecification & WithTransitGatewayAttachmentArn(const Aws::String &value)
RouteAnalysisEndpointOptionsSpecification & WithTransitGatewayAttachmentArn(Aws::String &&value)
RouteAnalysisEndpointOptionsSpecification & WithIpAddress(const Aws::String &value)
AWS_NETWORKMANAGER_API RouteAnalysisEndpointOptionsSpecification(Aws::Utils::Json::JsonView jsonValue)
RouteAnalysisEndpointOptionsSpecification & WithTransitGatewayAttachmentArn(const char *value)
RouteAnalysisEndpointOptionsSpecification & WithIpAddress(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue