AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
UpdateLandingZoneRequest.h
1
6#pragma once
7#include <aws/controltower/ControlTower_EXPORTS.h>
8#include <aws/controltower/ControlTowerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/Document.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ControlTower
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CONTROLTOWER_API UpdateLandingZoneRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateLandingZone"; }
32
33 AWS_CONTROLTOWER_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetLandingZoneIdentifier() const { return m_landingZoneIdentifier; }
41 inline bool LandingZoneIdentifierHasBeenSet() const { return m_landingZoneIdentifierHasBeenSet; }
42 template<typename LandingZoneIdentifierT = Aws::String>
43 void SetLandingZoneIdentifier(LandingZoneIdentifierT&& value) { m_landingZoneIdentifierHasBeenSet = true; m_landingZoneIdentifier = std::forward<LandingZoneIdentifierT>(value); }
44 template<typename LandingZoneIdentifierT = Aws::String>
45 UpdateLandingZoneRequest& WithLandingZoneIdentifier(LandingZoneIdentifierT&& value) { SetLandingZoneIdentifier(std::forward<LandingZoneIdentifierT>(value)); return *this;}
47
49
57 inline Aws::Utils::DocumentView GetManifest() const { return m_manifest; }
58 inline bool ManifestHasBeenSet() const { return m_manifestHasBeenSet; }
59 template<typename ManifestT = Aws::Utils::Document>
60 void SetManifest(ManifestT&& value) { m_manifestHasBeenSet = true; m_manifest = std::forward<ManifestT>(value); }
61 template<typename ManifestT = Aws::Utils::Document>
62 UpdateLandingZoneRequest& WithManifest(ManifestT&& value) { SetManifest(std::forward<ManifestT>(value)); return *this;}
64
66
69 inline const Aws::String& GetVersion() const { return m_version; }
70 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
71 template<typename VersionT = Aws::String>
72 void SetVersion(VersionT&& value) { m_versionHasBeenSet = true; m_version = std::forward<VersionT>(value); }
73 template<typename VersionT = Aws::String>
74 UpdateLandingZoneRequest& WithVersion(VersionT&& value) { SetVersion(std::forward<VersionT>(value)); return *this;}
76 private:
77
78 Aws::String m_landingZoneIdentifier;
79 bool m_landingZoneIdentifierHasBeenSet = false;
80
81 Aws::Utils::Document m_manifest;
82 bool m_manifestHasBeenSet = false;
83
84 Aws::String m_version;
85 bool m_versionHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace ControlTower
90} // namespace Aws
UpdateLandingZoneRequest & WithManifest(ManifestT &&value)
virtual const char * GetServiceRequestName() const override
AWS_CONTROLTOWER_API UpdateLandingZoneRequest()=default
UpdateLandingZoneRequest & WithLandingZoneIdentifier(LandingZoneIdentifierT &&value)
void SetLandingZoneIdentifier(LandingZoneIdentifierT &&value)
AWS_CONTROLTOWER_API Aws::String SerializePayload() const override
UpdateLandingZoneRequest & WithVersion(VersionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String