AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
SessionManagerOutputUrl.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ssm/SSM_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SSM {
20namespace Model {
21
28 public:
29 AWS_SSM_API SessionManagerOutputUrl() = default;
33
35
38 inline const Aws::String& GetS3OutputUrl() const { return m_s3OutputUrl; }
39 inline bool S3OutputUrlHasBeenSet() const { return m_s3OutputUrlHasBeenSet; }
40 template <typename S3OutputUrlT = Aws::String>
41 void SetS3OutputUrl(S3OutputUrlT&& value) {
42 m_s3OutputUrlHasBeenSet = true;
43 m_s3OutputUrl = std::forward<S3OutputUrlT>(value);
44 }
45 template <typename S3OutputUrlT = Aws::String>
47 SetS3OutputUrl(std::forward<S3OutputUrlT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetCloudWatchOutputUrl() const { return m_cloudWatchOutputUrl; }
57 inline bool CloudWatchOutputUrlHasBeenSet() const { return m_cloudWatchOutputUrlHasBeenSet; }
58 template <typename CloudWatchOutputUrlT = Aws::String>
59 void SetCloudWatchOutputUrl(CloudWatchOutputUrlT&& value) {
60 m_cloudWatchOutputUrlHasBeenSet = true;
61 m_cloudWatchOutputUrl = std::forward<CloudWatchOutputUrlT>(value);
62 }
63 template <typename CloudWatchOutputUrlT = Aws::String>
64 SessionManagerOutputUrl& WithCloudWatchOutputUrl(CloudWatchOutputUrlT&& value) {
65 SetCloudWatchOutputUrl(std::forward<CloudWatchOutputUrlT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_s3OutputUrl;
71
72 Aws::String m_cloudWatchOutputUrl;
73 bool m_s3OutputUrlHasBeenSet = false;
74 bool m_cloudWatchOutputUrlHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace SSM
79} // namespace Aws
void SetCloudWatchOutputUrl(CloudWatchOutputUrlT &&value)
AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const
SessionManagerOutputUrl & WithS3OutputUrl(S3OutputUrlT &&value)
AWS_SSM_API SessionManagerOutputUrl(Aws::Utils::Json::JsonView jsonValue)
AWS_SSM_API SessionManagerOutputUrl()=default
SessionManagerOutputUrl & WithCloudWatchOutputUrl(CloudWatchOutputUrlT &&value)
AWS_SSM_API SessionManagerOutputUrl & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue