AWS SDK for C++

AWS SDK for C++ Version 1.11.695

Loading...
Searching...
No Matches
DevEnvironmentAccessDetails.h
1
6#pragma once
7#include <aws/codecatalyst/CodeCatalyst_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace CodeCatalyst {
20namespace Model {
21
29 public:
30 AWS_CODECATALYST_API DevEnvironmentAccessDetails() = default;
33 AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetStreamUrl() const { return m_streamUrl; }
40 inline bool StreamUrlHasBeenSet() const { return m_streamUrlHasBeenSet; }
41 template <typename StreamUrlT = Aws::String>
42 void SetStreamUrl(StreamUrlT&& value) {
43 m_streamUrlHasBeenSet = true;
44 m_streamUrl = std::forward<StreamUrlT>(value);
45 }
46 template <typename StreamUrlT = Aws::String>
48 SetStreamUrl(std::forward<StreamUrlT>(value));
49 return *this;
50 }
52
54
58 inline const Aws::String& GetTokenValue() const { return m_tokenValue; }
59 inline bool TokenValueHasBeenSet() const { return m_tokenValueHasBeenSet; }
60 template <typename TokenValueT = Aws::String>
61 void SetTokenValue(TokenValueT&& value) {
62 m_tokenValueHasBeenSet = true;
63 m_tokenValue = std::forward<TokenValueT>(value);
64 }
65 template <typename TokenValueT = Aws::String>
67 SetTokenValue(std::forward<TokenValueT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_streamUrl;
73 bool m_streamUrlHasBeenSet = false;
74
75 Aws::String m_tokenValue;
76 bool m_tokenValueHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace CodeCatalyst
81} // namespace Aws
AWS_CODECATALYST_API DevEnvironmentAccessDetails()=default
AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CODECATALYST_API DevEnvironmentAccessDetails(Aws::Utils::Json::JsonView jsonValue)
DevEnvironmentAccessDetails & WithTokenValue(TokenValueT &&value)
AWS_CODECATALYST_API DevEnvironmentAccessDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
DevEnvironmentAccessDetails & WithStreamUrl(StreamUrlT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue