AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeLayersRequest.h
1
6#pragma once
7#include <aws/opsworks/OpsWorks_EXPORTS.h>
8#include <aws/opsworks/OpsWorksRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace OpsWorks
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_OPSWORKS_API DescribeLayersRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeLayers"; }
32
33 AWS_OPSWORKS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetStackId() const{ return m_stackId; }
43 inline bool StackIdHasBeenSet() const { return m_stackIdHasBeenSet; }
44 inline void SetStackId(const Aws::String& value) { m_stackIdHasBeenSet = true; m_stackId = value; }
45 inline void SetStackId(Aws::String&& value) { m_stackIdHasBeenSet = true; m_stackId = std::move(value); }
46 inline void SetStackId(const char* value) { m_stackIdHasBeenSet = true; m_stackId.assign(value); }
47 inline DescribeLayersRequest& WithStackId(const Aws::String& value) { SetStackId(value); return *this;}
48 inline DescribeLayersRequest& WithStackId(Aws::String&& value) { SetStackId(std::move(value)); return *this;}
49 inline DescribeLayersRequest& WithStackId(const char* value) { SetStackId(value); return *this;}
51
53
58 inline const Aws::Vector<Aws::String>& GetLayerIds() const{ return m_layerIds; }
59 inline bool LayerIdsHasBeenSet() const { return m_layerIdsHasBeenSet; }
60 inline void SetLayerIds(const Aws::Vector<Aws::String>& value) { m_layerIdsHasBeenSet = true; m_layerIds = value; }
61 inline void SetLayerIds(Aws::Vector<Aws::String>&& value) { m_layerIdsHasBeenSet = true; m_layerIds = std::move(value); }
62 inline DescribeLayersRequest& WithLayerIds(const Aws::Vector<Aws::String>& value) { SetLayerIds(value); return *this;}
63 inline DescribeLayersRequest& WithLayerIds(Aws::Vector<Aws::String>&& value) { SetLayerIds(std::move(value)); return *this;}
64 inline DescribeLayersRequest& AddLayerIds(const Aws::String& value) { m_layerIdsHasBeenSet = true; m_layerIds.push_back(value); return *this; }
65 inline DescribeLayersRequest& AddLayerIds(Aws::String&& value) { m_layerIdsHasBeenSet = true; m_layerIds.push_back(std::move(value)); return *this; }
66 inline DescribeLayersRequest& AddLayerIds(const char* value) { m_layerIdsHasBeenSet = true; m_layerIds.push_back(value); return *this; }
68 private:
69
70 Aws::String m_stackId;
71 bool m_stackIdHasBeenSet = false;
72
73 Aws::Vector<Aws::String> m_layerIds;
74 bool m_layerIdsHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace OpsWorks
79} // namespace Aws
void SetLayerIds(const Aws::Vector< Aws::String > &value)
DescribeLayersRequest & AddLayerIds(Aws::String &&value)
DescribeLayersRequest & WithLayerIds(const Aws::Vector< Aws::String > &value)
DescribeLayersRequest & AddLayerIds(const char *value)
DescribeLayersRequest & WithStackId(Aws::String &&value)
DescribeLayersRequest & WithLayerIds(Aws::Vector< Aws::String > &&value)
const Aws::Vector< Aws::String > & GetLayerIds() const
AWS_OPSWORKS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeLayersRequest & WithStackId(const char *value)
AWS_OPSWORKS_API Aws::String SerializePayload() const override
DescribeLayersRequest & AddLayerIds(const Aws::String &value)
DescribeLayersRequest & WithStackId(const Aws::String &value)
void SetLayerIds(Aws::Vector< Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector