AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AppInstanceStreamingConfiguration.h
1
6#pragma once
7#include <aws/chime/Chime_EXPORTS.h>
8#include <aws/chime/model/AppInstanceDataType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Chime
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const AppInstanceDataType& GetAppInstanceDataType() const{ return m_appInstanceDataType; }
47 inline bool AppInstanceDataTypeHasBeenSet() const { return m_appInstanceDataTypeHasBeenSet; }
48 inline void SetAppInstanceDataType(const AppInstanceDataType& value) { m_appInstanceDataTypeHasBeenSet = true; m_appInstanceDataType = value; }
49 inline void SetAppInstanceDataType(AppInstanceDataType&& value) { m_appInstanceDataTypeHasBeenSet = true; m_appInstanceDataType = std::move(value); }
53
55
58 inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
59 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
60 inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
61 inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
62 inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
63 inline AppInstanceStreamingConfiguration& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
64 inline AppInstanceStreamingConfiguration& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
65 inline AppInstanceStreamingConfiguration& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
67 private:
68
69 AppInstanceDataType m_appInstanceDataType;
70 bool m_appInstanceDataTypeHasBeenSet = false;
71
72 Aws::String m_resourceArn;
73 bool m_resourceArnHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace Chime
78} // namespace Aws
AppInstanceStreamingConfiguration & WithResourceArn(Aws::String &&value)
AWS_CHIME_API AppInstanceStreamingConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_CHIME_API Aws::Utils::Json::JsonValue Jsonize() const
AppInstanceStreamingConfiguration & WithAppInstanceDataType(AppInstanceDataType &&value)
AWS_CHIME_API AppInstanceStreamingConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
AppInstanceStreamingConfiguration & WithResourceArn(const Aws::String &value)
AppInstanceStreamingConfiguration & WithAppInstanceDataType(const AppInstanceDataType &value)
AppInstanceStreamingConfiguration & WithResourceArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue