AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteFleetsRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EC2_API DeleteFleetsRequest() = default;
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 "DeleteFleets"; }
32
33 AWS_EC2_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
47 inline bool GetDryRun() const { return m_dryRun; }
48 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
49 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
50 inline DeleteFleetsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
52
54
59 inline const Aws::Vector<Aws::String>& GetFleetIds() const { return m_fleetIds; }
60 inline bool FleetIdsHasBeenSet() const { return m_fleetIdsHasBeenSet; }
61 template<typename FleetIdsT = Aws::Vector<Aws::String>>
62 void SetFleetIds(FleetIdsT&& value) { m_fleetIdsHasBeenSet = true; m_fleetIds = std::forward<FleetIdsT>(value); }
63 template<typename FleetIdsT = Aws::Vector<Aws::String>>
64 DeleteFleetsRequest& WithFleetIds(FleetIdsT&& value) { SetFleetIds(std::forward<FleetIdsT>(value)); return *this;}
65 template<typename FleetIdsT = Aws::String>
66 DeleteFleetsRequest& AddFleetIds(FleetIdsT&& value) { m_fleetIdsHasBeenSet = true; m_fleetIds.emplace_back(std::forward<FleetIdsT>(value)); return *this; }
68
70
79 inline bool GetTerminateInstances() const { return m_terminateInstances; }
80 inline bool TerminateInstancesHasBeenSet() const { return m_terminateInstancesHasBeenSet; }
81 inline void SetTerminateInstances(bool value) { m_terminateInstancesHasBeenSet = true; m_terminateInstances = value; }
82 inline DeleteFleetsRequest& WithTerminateInstances(bool value) { SetTerminateInstances(value); return *this;}
84 private:
85
86 bool m_dryRun{false};
87 bool m_dryRunHasBeenSet = false;
88
89 Aws::Vector<Aws::String> m_fleetIds;
90 bool m_fleetIdsHasBeenSet = false;
91
92 bool m_terminateInstances{false};
93 bool m_terminateInstancesHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace EC2
98} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteFleetsRequest & WithDryRun(bool value)
DeleteFleetsRequest & WithTerminateInstances(bool value)
const Aws::Vector< Aws::String > & GetFleetIds() const
AWS_EC2_API Aws::String SerializePayload() const override
DeleteFleetsRequest & AddFleetIds(FleetIdsT &&value)
DeleteFleetsRequest & WithFleetIds(FleetIdsT &&value)
virtual const char * GetServiceRequestName() const override
AWS_EC2_API DeleteFleetsRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector