AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteProjectRequest.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 Http
15{
16 class URI;
17} //namespace Http
18namespace DataZone
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_DATAZONE_API DeleteProjectRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DeleteProject"; }
35
36 AWS_DATAZONE_API Aws::String SerializePayload() const override;
37
38 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
46 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
47 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
48 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
49 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
50 inline DeleteProjectRequest& WithDomainIdentifier(const Aws::String& value) { SetDomainIdentifier(value); return *this;}
51 inline DeleteProjectRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
52 inline DeleteProjectRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
54
56
59 inline const Aws::String& GetIdentifier() const{ return m_identifier; }
60 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
61 inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; }
62 inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); }
63 inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); }
64 inline DeleteProjectRequest& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;}
65 inline DeleteProjectRequest& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;}
66 inline DeleteProjectRequest& WithIdentifier(const char* value) { SetIdentifier(value); return *this;}
68
70
74 inline bool GetSkipDeletionCheck() const{ return m_skipDeletionCheck; }
75 inline bool SkipDeletionCheckHasBeenSet() const { return m_skipDeletionCheckHasBeenSet; }
76 inline void SetSkipDeletionCheck(bool value) { m_skipDeletionCheckHasBeenSet = true; m_skipDeletionCheck = value; }
77 inline DeleteProjectRequest& WithSkipDeletionCheck(bool value) { SetSkipDeletionCheck(value); return *this;}
79 private:
80
81 Aws::String m_domainIdentifier;
82 bool m_domainIdentifierHasBeenSet = false;
83
84 Aws::String m_identifier;
85 bool m_identifierHasBeenSet = false;
86
87 bool m_skipDeletionCheck;
88 bool m_skipDeletionCheckHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace DataZone
93} // namespace Aws
DeleteProjectRequest & WithDomainIdentifier(const Aws::String &value)
DeleteProjectRequest & WithSkipDeletionCheck(bool value)
DeleteProjectRequest & WithDomainIdentifier(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
DeleteProjectRequest & WithDomainIdentifier(const char *value)
DeleteProjectRequest & WithIdentifier(const char *value)
DeleteProjectRequest & WithIdentifier(Aws::String &&value)
AWS_DATAZONE_API Aws::String SerializePayload() const override
void SetDomainIdentifier(const Aws::String &value)
AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteProjectRequest & WithIdentifier(const Aws::String &value)
void SetIdentifier(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String