AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetLandingZoneIdentifier(const Aws::String& value) { m_landingZoneIdentifierHasBeenSet = true; m_landingZoneIdentifier = value; }
43 inline void SetLandingZoneIdentifier(Aws::String&& value) { m_landingZoneIdentifierHasBeenSet = true; m_landingZoneIdentifier = std::move(value); }
44 inline void SetLandingZoneIdentifier(const char* value) { m_landingZoneIdentifierHasBeenSet = true; m_landingZoneIdentifier.assign(value); }
47 inline UpdateLandingZoneRequest& WithLandingZoneIdentifier(const char* value) { SetLandingZoneIdentifier(value); return *this;}
49
51
59 inline Aws::Utils::DocumentView GetManifest() const{ return m_manifest; }
60 inline bool ManifestHasBeenSet() const { return m_manifestHasBeenSet; }
61 inline void SetManifest(const Aws::Utils::Document& value) { m_manifestHasBeenSet = true; m_manifest = value; }
62 inline void SetManifest(Aws::Utils::Document&& value) { m_manifestHasBeenSet = true; m_manifest = std::move(value); }
63 inline UpdateLandingZoneRequest& WithManifest(const Aws::Utils::Document& value) { SetManifest(value); return *this;}
64 inline UpdateLandingZoneRequest& WithManifest(Aws::Utils::Document&& value) { SetManifest(std::move(value)); return *this;}
66
68
71 inline const Aws::String& GetVersion() const{ return m_version; }
72 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
73 inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
74 inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
75 inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
76 inline UpdateLandingZoneRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
77 inline UpdateLandingZoneRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
78 inline UpdateLandingZoneRequest& WithVersion(const char* value) { SetVersion(value); return *this;}
80 private:
81
82 Aws::String m_landingZoneIdentifier;
83 bool m_landingZoneIdentifierHasBeenSet = false;
84
85 Aws::Utils::Document m_manifest;
86 bool m_manifestHasBeenSet = false;
87
88 Aws::String m_version;
89 bool m_versionHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace ControlTower
94} // namespace Aws
UpdateLandingZoneRequest & WithVersion(const char *value)
UpdateLandingZoneRequest & WithVersion(const Aws::String &value)
UpdateLandingZoneRequest & WithLandingZoneIdentifier(Aws::String &&value)
void SetManifest(const Aws::Utils::Document &value)
virtual const char * GetServiceRequestName() const override
UpdateLandingZoneRequest & WithManifest(Aws::Utils::Document &&value)
UpdateLandingZoneRequest & WithLandingZoneIdentifier(const Aws::String &value)
AWS_CONTROLTOWER_API Aws::String SerializePayload() const override
UpdateLandingZoneRequest & WithVersion(Aws::String &&value)
UpdateLandingZoneRequest & WithLandingZoneIdentifier(const char *value)
UpdateLandingZoneRequest & WithManifest(const Aws::Utils::Document &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String