AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace CodeCatalyst
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_CODECATALYST_API DevEnvironmentAccessDetails() = default;
38 AWS_CODECATALYST_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetStreamUrl() const { return m_streamUrl; }
46 inline bool StreamUrlHasBeenSet() const { return m_streamUrlHasBeenSet; }
47 template<typename StreamUrlT = Aws::String>
48 void SetStreamUrl(StreamUrlT&& value) { m_streamUrlHasBeenSet = true; m_streamUrl = std::forward<StreamUrlT>(value); }
49 template<typename StreamUrlT = Aws::String>
50 DevEnvironmentAccessDetails& WithStreamUrl(StreamUrlT&& value) { SetStreamUrl(std::forward<StreamUrlT>(value)); return *this;}
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) { m_tokenValueHasBeenSet = true; m_tokenValue = std::forward<TokenValueT>(value); }
62 template<typename TokenValueT = Aws::String>
63 DevEnvironmentAccessDetails& WithTokenValue(TokenValueT&& value) { SetTokenValue(std::forward<TokenValueT>(value)); return *this;}
65 private:
66
67 Aws::String m_streamUrl;
68 bool m_streamUrlHasBeenSet = false;
69
70 Aws::String m_tokenValue;
71 bool m_tokenValueHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace CodeCatalyst
76} // 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