AWS SDK for C++

AWS SDK for C++ Version 1.11.844

Loading...
Searching...
No Matches
PrivateNetworkConfiguration.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/crt/cbor/Cbor.h>
9#include <aws/mailmanager/MailManager_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Cbor {
16class CborValue;
17} // namespace Cbor
18} // namespace Utils
19namespace MailManager {
20namespace Model {
21
29 public:
30 AWS_MAILMANAGER_API PrivateNetworkConfiguration() = default;
31 AWS_MAILMANAGER_API PrivateNetworkConfiguration(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
32 AWS_MAILMANAGER_API PrivateNetworkConfiguration& operator=(const std::shared_ptr<Aws::Crt::Cbor::CborDecoder>& decoder);
33 AWS_MAILMANAGER_API void CborEncode(Aws::Crt::Cbor::CborEncoder& encoder) const;
34
36
40 inline const Aws::String& GetVpcEndpointId() const { return m_vpcEndpointId; }
41 inline bool VpcEndpointIdHasBeenSet() const { return m_vpcEndpointIdHasBeenSet; }
42 template <typename VpcEndpointIdT = Aws::String>
43 void SetVpcEndpointId(VpcEndpointIdT&& value) {
44 m_vpcEndpointIdHasBeenSet = true;
45 m_vpcEndpointId = std::forward<VpcEndpointIdT>(value);
46 }
47 template <typename VpcEndpointIdT = Aws::String>
49 SetVpcEndpointId(std::forward<VpcEndpointIdT>(value));
50 return *this;
51 }
53 private:
54 Aws::String m_vpcEndpointId;
55 bool m_vpcEndpointIdHasBeenSet = false;
56};
57
58} // namespace Model
59} // namespace MailManager
60} // namespace Aws
AWS_MAILMANAGER_API PrivateNetworkConfiguration(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_MAILMANAGER_API PrivateNetworkConfiguration & operator=(const std::shared_ptr< Aws::Crt::Cbor::CborDecoder > &decoder)
AWS_MAILMANAGER_API void CborEncode(Aws::Crt::Cbor::CborEncoder &encoder) const
AWS_MAILMANAGER_API PrivateNetworkConfiguration()=default
PrivateNetworkConfiguration & WithVpcEndpointId(VpcEndpointIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String