AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CancelBundleTaskRequest.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/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace EC2
15{
16namespace Model
17{
18
25 {
26 public:
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "CancelBundleTask"; }
34
35 AWS_EC2_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
46 inline const Aws::String& GetBundleId() const{ return m_bundleId; }
47 inline bool BundleIdHasBeenSet() const { return m_bundleIdHasBeenSet; }
48 inline void SetBundleId(const Aws::String& value) { m_bundleIdHasBeenSet = true; m_bundleId = value; }
49 inline void SetBundleId(Aws::String&& value) { m_bundleIdHasBeenSet = true; m_bundleId = std::move(value); }
50 inline void SetBundleId(const char* value) { m_bundleIdHasBeenSet = true; m_bundleId.assign(value); }
51 inline CancelBundleTaskRequest& WithBundleId(const Aws::String& value) { SetBundleId(value); return *this;}
52 inline CancelBundleTaskRequest& WithBundleId(Aws::String&& value) { SetBundleId(std::move(value)); return *this;}
53 inline CancelBundleTaskRequest& WithBundleId(const char* value) { SetBundleId(value); return *this;}
55
57
63 inline bool GetDryRun() const{ return m_dryRun; }
64 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
65 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
66 inline CancelBundleTaskRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
68 private:
69
70 Aws::String m_bundleId;
71 bool m_bundleIdHasBeenSet = false;
72
73 bool m_dryRun;
74 bool m_dryRunHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace EC2
79} // namespace Aws
AWS_EC2_API Aws::String SerializePayload() const override
CancelBundleTaskRequest & WithBundleId(const Aws::String &value)
CancelBundleTaskRequest & WithBundleId(Aws::String &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
CancelBundleTaskRequest & WithDryRun(bool value)
virtual const char * GetServiceRequestName() const override
CancelBundleTaskRequest & WithBundleId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String