AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteStudioSessionMappingRequest.h
1
6#pragma once
7#include <aws/elasticmapreduce/EMR_EXPORTS.h>
8#include <aws/elasticmapreduce/EMRRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/elasticmapreduce/model/IdentityType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EMR
16{
17namespace Model
18{
19
23 {
24 public:
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 "DeleteStudioSessionMapping"; }
32
33 AWS_EMR_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetStudioId() const{ return m_studioId; }
43 inline bool StudioIdHasBeenSet() const { return m_studioIdHasBeenSet; }
44 inline void SetStudioId(const Aws::String& value) { m_studioIdHasBeenSet = true; m_studioId = value; }
45 inline void SetStudioId(Aws::String&& value) { m_studioIdHasBeenSet = true; m_studioId = std::move(value); }
46 inline void SetStudioId(const char* value) { m_studioIdHasBeenSet = true; m_studioId.assign(value); }
47 inline DeleteStudioSessionMappingRequest& WithStudioId(const Aws::String& value) { SetStudioId(value); return *this;}
48 inline DeleteStudioSessionMappingRequest& WithStudioId(Aws::String&& value) { SetStudioId(std::move(value)); return *this;}
49 inline DeleteStudioSessionMappingRequest& WithStudioId(const char* value) { SetStudioId(value); return *this;}
51
53
62 inline const Aws::String& GetIdentityId() const{ return m_identityId; }
63 inline bool IdentityIdHasBeenSet() const { return m_identityIdHasBeenSet; }
64 inline void SetIdentityId(const Aws::String& value) { m_identityIdHasBeenSet = true; m_identityId = value; }
65 inline void SetIdentityId(Aws::String&& value) { m_identityIdHasBeenSet = true; m_identityId = std::move(value); }
66 inline void SetIdentityId(const char* value) { m_identityIdHasBeenSet = true; m_identityId.assign(value); }
67 inline DeleteStudioSessionMappingRequest& WithIdentityId(const Aws::String& value) { SetIdentityId(value); return *this;}
68 inline DeleteStudioSessionMappingRequest& WithIdentityId(Aws::String&& value) { SetIdentityId(std::move(value)); return *this;}
69 inline DeleteStudioSessionMappingRequest& WithIdentityId(const char* value) { SetIdentityId(value); return *this;}
71
73
82 inline const Aws::String& GetIdentityName() const{ return m_identityName; }
83 inline bool IdentityNameHasBeenSet() const { return m_identityNameHasBeenSet; }
84 inline void SetIdentityName(const Aws::String& value) { m_identityNameHasBeenSet = true; m_identityName = value; }
85 inline void SetIdentityName(Aws::String&& value) { m_identityNameHasBeenSet = true; m_identityName = std::move(value); }
86 inline void SetIdentityName(const char* value) { m_identityNameHasBeenSet = true; m_identityName.assign(value); }
88 inline DeleteStudioSessionMappingRequest& WithIdentityName(Aws::String&& value) { SetIdentityName(std::move(value)); return *this;}
89 inline DeleteStudioSessionMappingRequest& WithIdentityName(const char* value) { SetIdentityName(value); return *this;}
91
93
97 inline const IdentityType& GetIdentityType() const{ return m_identityType; }
98 inline bool IdentityTypeHasBeenSet() const { return m_identityTypeHasBeenSet; }
99 inline void SetIdentityType(const IdentityType& value) { m_identityTypeHasBeenSet = true; m_identityType = value; }
100 inline void SetIdentityType(IdentityType&& value) { m_identityTypeHasBeenSet = true; m_identityType = std::move(value); }
102 inline DeleteStudioSessionMappingRequest& WithIdentityType(IdentityType&& value) { SetIdentityType(std::move(value)); return *this;}
104 private:
105
106 Aws::String m_studioId;
107 bool m_studioIdHasBeenSet = false;
108
109 Aws::String m_identityId;
110 bool m_identityIdHasBeenSet = false;
111
112 Aws::String m_identityName;
113 bool m_identityNameHasBeenSet = false;
114
115 IdentityType m_identityType;
116 bool m_identityTypeHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace EMR
121} // namespace Aws
DeleteStudioSessionMappingRequest & WithStudioId(Aws::String &&value)
DeleteStudioSessionMappingRequest & WithIdentityName(const char *value)
DeleteStudioSessionMappingRequest & WithStudioId(const char *value)
DeleteStudioSessionMappingRequest & WithIdentityType(const IdentityType &value)
AWS_EMR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteStudioSessionMappingRequest & WithIdentityType(IdentityType &&value)
DeleteStudioSessionMappingRequest & WithIdentityId(const char *value)
DeleteStudioSessionMappingRequest & WithIdentityName(Aws::String &&value)
DeleteStudioSessionMappingRequest & WithIdentityName(const Aws::String &value)
AWS_EMR_API Aws::String SerializePayload() const override
DeleteStudioSessionMappingRequest & WithIdentityId(Aws::String &&value)
DeleteStudioSessionMappingRequest & WithIdentityId(const Aws::String &value)
DeleteStudioSessionMappingRequest & WithStudioId(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String