AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetInfrastructureConfigurationRequest.h
1
6#pragma once
7#include <aws/imagebuilder/Imagebuilder_EXPORTS.h>
8#include <aws/imagebuilder/ImagebuilderRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace imagebuilder
19{
20namespace Model
21{
22
29 {
30 public:
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "GetInfrastructureConfiguration"; }
38
39 AWS_IMAGEBUILDER_API Aws::String SerializePayload() const override;
40
41 AWS_IMAGEBUILDER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
49 inline const Aws::String& GetInfrastructureConfigurationArn() const{ return m_infrastructureConfigurationArn; }
50 inline bool InfrastructureConfigurationArnHasBeenSet() const { return m_infrastructureConfigurationArnHasBeenSet; }
51 inline void SetInfrastructureConfigurationArn(const Aws::String& value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn = value; }
52 inline void SetInfrastructureConfigurationArn(Aws::String&& value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn = std::move(value); }
53 inline void SetInfrastructureConfigurationArn(const char* value) { m_infrastructureConfigurationArnHasBeenSet = true; m_infrastructureConfigurationArn.assign(value); }
58 private:
59
60 Aws::String m_infrastructureConfigurationArn;
61 bool m_infrastructureConfigurationArnHasBeenSet = false;
62 };
63
64} // namespace Model
65} // namespace imagebuilder
66} // namespace Aws
GetInfrastructureConfigurationRequest & WithInfrastructureConfigurationArn(const Aws::String &value)
AWS_IMAGEBUILDER_API Aws::String SerializePayload() const override
GetInfrastructureConfigurationRequest & WithInfrastructureConfigurationArn(Aws::String &&value)
AWS_IMAGEBUILDER_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetInfrastructureConfigurationRequest & WithInfrastructureConfigurationArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String