AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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 template<typename InstanceEventWindowIdT = Aws::String>
60 void SetInstanceEventWindowId(InstanceEventWindowIdT&& value) { m_instanceEventWindowIdHasBeenSet = true; m_instanceEventWindowId = std::forward<InstanceEventWindowIdT>(value); }
61 template<typename InstanceEventWindowIdT = Aws::String>
62 DisassociateInstanceEventWindowRequest& WithInstanceEventWindowId(InstanceEventWindowIdT&& value) { SetInstanceEventWindowId(std::forward<InstanceEventWindowIdT>(value)); return *this;}
64
66
69 inline const InstanceEventWindowDisassociationRequest& GetAssociationTarget() const { return m_associationTarget; }
70 inline bool AssociationTargetHasBeenSet() const { return m_associationTargetHasBeenSet; }
71 template<typename AssociationTargetT = InstanceEventWindowDisassociationRequest>
72 void SetAssociationTarget(AssociationTargetT&& value) { m_associationTargetHasBeenSet = true; m_associationTarget = std::forward<AssociationTargetT>(value); }
73 template<typename AssociationTargetT = InstanceEventWindowDisassociationRequest>
74 DisassociateInstanceEventWindowRequest& WithAssociationTarget(AssociationTargetT&& value) { SetAssociationTarget(std::forward<AssociationTargetT>(value)); return *this;}
76 private:
77
78 bool m_dryRun{false};
79 bool m_dryRunHasBeenSet = false;
80
81 Aws::String m_instanceEventWindowId;
82 bool m_instanceEventWindowIdHasBeenSet = false;
83
84 InstanceEventWindowDisassociationRequest m_associationTarget;
85 bool m_associationTargetHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace EC2
90} // namespace Aws
DisassociateInstanceEventWindowRequest & WithAssociationTarget(AssociationTargetT &&value)
const InstanceEventWindowDisassociationRequest & GetAssociationTarget() const
DisassociateInstanceEventWindowRequest & WithDryRun(bool value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_EC2_API Aws::String SerializePayload() const override
DisassociateInstanceEventWindowRequest & WithInstanceEventWindowId(InstanceEventWindowIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String