AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateGroupProfileRequest.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#include <aws/core/utils/UUID.h>
12
13namespace Aws
14{
15namespace DataZone
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_DATAZONE_API CreateGroupProfileRequest();
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 "CreateGroupProfile"; }
32
33 AWS_DATAZONE_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
42 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
43 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
44 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
45 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
46 inline CreateGroupProfileRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
47 inline CreateGroupProfileRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
48 inline CreateGroupProfileRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
50
52
56 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
57 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
58 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
59 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
60 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
62 inline CreateGroupProfileRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
63 inline CreateGroupProfileRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
65
67
70 inline const Aws::String& GetGroupIdentifier() const{ return m_groupIdentifier; }
71 inline bool GroupIdentifierHasBeenSet() const { return m_groupIdentifierHasBeenSet; }
72 inline void SetGroupIdentifier(const Aws::String& value) { m_groupIdentifierHasBeenSet = true; m_groupIdentifier = value; }
73 inline void SetGroupIdentifier(Aws::String&& value) { m_groupIdentifierHasBeenSet = true; m_groupIdentifier = std::move(value); }
74 inline void SetGroupIdentifier(const char* value) { m_groupIdentifierHasBeenSet = true; m_groupIdentifier.assign(value); }
75 inline CreateGroupProfileRequest& WithGroupIdentifier(const Aws::String& value) { SetGroupIdentifier(value); return *this;}
76 inline CreateGroupProfileRequest& WithGroupIdentifier(Aws::String&& value) { SetGroupIdentifier(std::move(value)); return *this;}
77 inline CreateGroupProfileRequest& WithGroupIdentifier(const char* value) { SetGroupIdentifier(value); return *this;}
79 private:
80
81 Aws::String m_clientToken;
82 bool m_clientTokenHasBeenSet = false;
83
84 Aws::String m_domainIdentifier;
85 bool m_domainIdentifierHasBeenSet = false;
86
87 Aws::String m_groupIdentifier;
88 bool m_groupIdentifierHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace DataZone
93} // namespace Aws
virtual const char * GetServiceRequestName() const override
CreateGroupProfileRequest & WithDomainIdentifier(Aws::String &&value)
CreateGroupProfileRequest & WithGroupIdentifier(Aws::String &&value)
CreateGroupProfileRequest & WithClientToken(const char *value)
AWS_DATAZONE_API Aws::String SerializePayload() const override
CreateGroupProfileRequest & WithDomainIdentifier(const char *value)
CreateGroupProfileRequest & WithGroupIdentifier(const Aws::String &value)
CreateGroupProfileRequest & WithGroupIdentifier(const char *value)
CreateGroupProfileRequest & WithDomainIdentifier(const Aws::String &value)
CreateGroupProfileRequest & WithClientToken(const Aws::String &value)
CreateGroupProfileRequest & WithClientToken(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String