AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteEnvironmentActionRequest.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/datazone/DataZoneRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DataZone
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteEnvironmentAction"; }
31
32 AWS_DATAZONE_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
41 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
42 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
43 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
44 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
46 inline DeleteEnvironmentActionRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
47 inline DeleteEnvironmentActionRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
49
51
54 inline const Aws::String& GetEnvironmentIdentifier() const{ return m_environmentIdentifier; }
55 inline bool EnvironmentIdentifierHasBeenSet() const { return m_environmentIdentifierHasBeenSet; }
56 inline void SetEnvironmentIdentifier(const Aws::String& value) { m_environmentIdentifierHasBeenSet = true; m_environmentIdentifier = value; }
57 inline void SetEnvironmentIdentifier(Aws::String&& value) { m_environmentIdentifierHasBeenSet = true; m_environmentIdentifier = std::move(value); }
58 inline void SetEnvironmentIdentifier(const char* value) { m_environmentIdentifierHasBeenSet = true; m_environmentIdentifier.assign(value); }
61 inline DeleteEnvironmentActionRequest& WithEnvironmentIdentifier(const char* value) { SetEnvironmentIdentifier(value); return *this;}
63
65
68 inline const Aws::String& GetIdentifier() const{ return m_identifier; }
69 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
70 inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; }
71 inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); }
72 inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); }
73 inline DeleteEnvironmentActionRequest& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;}
74 inline DeleteEnvironmentActionRequest& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;}
75 inline DeleteEnvironmentActionRequest& WithIdentifier(const char* value) { SetIdentifier(value); return *this;}
77 private:
78
79 Aws::String m_domainIdentifier;
80 bool m_domainIdentifierHasBeenSet = false;
81
82 Aws::String m_environmentIdentifier;
83 bool m_environmentIdentifierHasBeenSet = false;
84
85 Aws::String m_identifier;
86 bool m_identifierHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace DataZone
91} // namespace Aws
DeleteEnvironmentActionRequest & WithEnvironmentIdentifier(const char *value)
AWS_DATAZONE_API Aws::String SerializePayload() const override
DeleteEnvironmentActionRequest & WithEnvironmentIdentifier(const Aws::String &value)
DeleteEnvironmentActionRequest & WithIdentifier(const char *value)
DeleteEnvironmentActionRequest & WithIdentifier(Aws::String &&value)
DeleteEnvironmentActionRequest & WithEnvironmentIdentifier(Aws::String &&value)
DeleteEnvironmentActionRequest & WithDomainIdentifier(const Aws::String &value)
DeleteEnvironmentActionRequest & WithDomainIdentifier(Aws::String &&value)
DeleteEnvironmentActionRequest & WithIdentifier(const Aws::String &value)
DeleteEnvironmentActionRequest & WithDomainIdentifier(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String