AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DisassociateInstanceEventWindowRequest.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 <aws/ec2/model/InstanceEventWindowDisassociationRequest.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
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 "DisassociateInstanceEventWindow"; }
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 DisassociateInstanceEventWindowRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
52
54
57 inline const Aws::String& GetInstanceEventWindowId() const{ return m_instanceEventWindowId; }
58 inline bool InstanceEventWindowIdHasBeenSet() const { return m_instanceEventWindowIdHasBeenSet; }
59 inline void SetInstanceEventWindowId(const Aws::String& value) { m_instanceEventWindowIdHasBeenSet = true; m_instanceEventWindowId = value; }
60 inline void SetInstanceEventWindowId(Aws::String&& value) { m_instanceEventWindowIdHasBeenSet = true; m_instanceEventWindowId = std::move(value); }
61 inline void SetInstanceEventWindowId(const char* value) { m_instanceEventWindowIdHasBeenSet = true; m_instanceEventWindowId.assign(value); }
66
68
71 inline const InstanceEventWindowDisassociationRequest& GetAssociationTarget() const{ return m_associationTarget; }
72 inline bool AssociationTargetHasBeenSet() const { return m_associationTargetHasBeenSet; }
73 inline void SetAssociationTarget(const InstanceEventWindowDisassociationRequest& value) { m_associationTargetHasBeenSet = true; m_associationTarget = value; }
74 inline void SetAssociationTarget(InstanceEventWindowDisassociationRequest&& value) { m_associationTargetHasBeenSet = true; m_associationTarget = std::move(value); }
78 private:
79
80 bool m_dryRun;
81 bool m_dryRunHasBeenSet = false;
82
83 Aws::String m_instanceEventWindowId;
84 bool m_instanceEventWindowIdHasBeenSet = false;
85
87 bool m_associationTargetHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EC2
92} // namespace Aws
DisassociateInstanceEventWindowRequest & WithAssociationTarget(const InstanceEventWindowDisassociationRequest &value)
const InstanceEventWindowDisassociationRequest & GetAssociationTarget() const
DisassociateInstanceEventWindowRequest & WithInstanceEventWindowId(const char *value)
DisassociateInstanceEventWindowRequest & WithDryRun(bool value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DisassociateInstanceEventWindowRequest & WithAssociationTarget(InstanceEventWindowDisassociationRequest &&value)
AWS_EC2_API Aws::String SerializePayload() const override
DisassociateInstanceEventWindowRequest & WithInstanceEventWindowId(Aws::String &&value)
void SetAssociationTarget(InstanceEventWindowDisassociationRequest &&value)
void SetAssociationTarget(const InstanceEventWindowDisassociationRequest &value)
DisassociateInstanceEventWindowRequest & WithInstanceEventWindowId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String