AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteAutoScalingConfigurationRequest.h
1
6#pragma once
7#include <aws/apprunner/AppRunner_EXPORTS.h>
8#include <aws/apprunner/AppRunnerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace AppRunner
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteAutoScalingConfiguration"; }
31
32 AWS_APPRUNNER_API Aws::String SerializePayload() const override;
33
35
36
38
45 inline const Aws::String& GetAutoScalingConfigurationArn() const{ return m_autoScalingConfigurationArn; }
46 inline bool AutoScalingConfigurationArnHasBeenSet() const { return m_autoScalingConfigurationArnHasBeenSet; }
47 inline void SetAutoScalingConfigurationArn(const Aws::String& value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn = value; }
48 inline void SetAutoScalingConfigurationArn(Aws::String&& value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn = std::move(value); }
49 inline void SetAutoScalingConfigurationArn(const char* value) { m_autoScalingConfigurationArnHasBeenSet = true; m_autoScalingConfigurationArn.assign(value); }
54
56
63 inline bool GetDeleteAllRevisions() const{ return m_deleteAllRevisions; }
64 inline bool DeleteAllRevisionsHasBeenSet() const { return m_deleteAllRevisionsHasBeenSet; }
65 inline void SetDeleteAllRevisions(bool value) { m_deleteAllRevisionsHasBeenSet = true; m_deleteAllRevisions = value; }
68 private:
69
70 Aws::String m_autoScalingConfigurationArn;
71 bool m_autoScalingConfigurationArnHasBeenSet = false;
72
73 bool m_deleteAllRevisions;
74 bool m_deleteAllRevisionsHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace AppRunner
79} // namespace Aws
DeleteAutoScalingConfigurationRequest & WithAutoScalingConfigurationArn(const char *value)
DeleteAutoScalingConfigurationRequest & WithDeleteAllRevisions(bool value)
AWS_APPRUNNER_API Aws::String SerializePayload() const override
DeleteAutoScalingConfigurationRequest & WithAutoScalingConfigurationArn(Aws::String &&value)
AWS_APPRUNNER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteAutoScalingConfigurationRequest & WithAutoScalingConfigurationArn(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String