AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
TaskVolumeConfiguration.h
1
6#pragma once
7#include <aws/ecs/ECS_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/ecs/model/TaskManagedEBSVolumeConfiguration.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 ECS
23{
24namespace Model
25{
26
35 {
36 public:
37 AWS_ECS_API TaskVolumeConfiguration() = default;
41
42
44
48 inline const Aws::String& GetName() const { return m_name; }
49 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
50 template<typename NameT = Aws::String>
51 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
52 template<typename NameT = Aws::String>
53 TaskVolumeConfiguration& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
55
57
63 inline const TaskManagedEBSVolumeConfiguration& GetManagedEBSVolume() const { return m_managedEBSVolume; }
64 inline bool ManagedEBSVolumeHasBeenSet() const { return m_managedEBSVolumeHasBeenSet; }
65 template<typename ManagedEBSVolumeT = TaskManagedEBSVolumeConfiguration>
66 void SetManagedEBSVolume(ManagedEBSVolumeT&& value) { m_managedEBSVolumeHasBeenSet = true; m_managedEBSVolume = std::forward<ManagedEBSVolumeT>(value); }
67 template<typename ManagedEBSVolumeT = TaskManagedEBSVolumeConfiguration>
68 TaskVolumeConfiguration& WithManagedEBSVolume(ManagedEBSVolumeT&& value) { SetManagedEBSVolume(std::forward<ManagedEBSVolumeT>(value)); return *this;}
70 private:
71
72 Aws::String m_name;
73 bool m_nameHasBeenSet = false;
74
75 TaskManagedEBSVolumeConfiguration m_managedEBSVolume;
76 bool m_managedEBSVolumeHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace ECS
81} // namespace Aws
AWS_ECS_API TaskVolumeConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetManagedEBSVolume(ManagedEBSVolumeT &&value)
AWS_ECS_API TaskVolumeConfiguration()=default
AWS_ECS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_ECS_API TaskVolumeConfiguration(Aws::Utils::Json::JsonView jsonValue)
const TaskManagedEBSVolumeConfiguration & GetManagedEBSVolume() const
TaskVolumeConfiguration & WithName(NameT &&value)
TaskVolumeConfiguration & WithManagedEBSVolume(ManagedEBSVolumeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue