AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DeregisterTargetsRequest.h
1
6#pragma once
7#include <aws/vpc-lattice/VPCLattice_EXPORTS.h>
8#include <aws/vpc-lattice/VPCLatticeRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/vpc-lattice/model/Target.h>
12#include <utility>
13
14namespace Aws
15{
16namespace VPCLattice
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_VPCLATTICE_API DeregisterTargetsRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DeregisterTargets"; }
33
34 AWS_VPCLATTICE_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetTargetGroupIdentifier() const { return m_targetGroupIdentifier; }
42 inline bool TargetGroupIdentifierHasBeenSet() const { return m_targetGroupIdentifierHasBeenSet; }
43 template<typename TargetGroupIdentifierT = Aws::String>
44 void SetTargetGroupIdentifier(TargetGroupIdentifierT&& value) { m_targetGroupIdentifierHasBeenSet = true; m_targetGroupIdentifier = std::forward<TargetGroupIdentifierT>(value); }
45 template<typename TargetGroupIdentifierT = Aws::String>
46 DeregisterTargetsRequest& WithTargetGroupIdentifier(TargetGroupIdentifierT&& value) { SetTargetGroupIdentifier(std::forward<TargetGroupIdentifierT>(value)); return *this;}
48
50
53 inline const Aws::Vector<Target>& GetTargets() const { return m_targets; }
54 inline bool TargetsHasBeenSet() const { return m_targetsHasBeenSet; }
55 template<typename TargetsT = Aws::Vector<Target>>
56 void SetTargets(TargetsT&& value) { m_targetsHasBeenSet = true; m_targets = std::forward<TargetsT>(value); }
57 template<typename TargetsT = Aws::Vector<Target>>
58 DeregisterTargetsRequest& WithTargets(TargetsT&& value) { SetTargets(std::forward<TargetsT>(value)); return *this;}
59 template<typename TargetsT = Target>
60 DeregisterTargetsRequest& AddTargets(TargetsT&& value) { m_targetsHasBeenSet = true; m_targets.emplace_back(std::forward<TargetsT>(value)); return *this; }
62 private:
63
64 Aws::String m_targetGroupIdentifier;
65 bool m_targetGroupIdentifierHasBeenSet = false;
66
67 Aws::Vector<Target> m_targets;
68 bool m_targetsHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace VPCLattice
73} // namespace Aws
AWS_VPCLATTICE_API Aws::String SerializePayload() const override
DeregisterTargetsRequest & WithTargets(TargetsT &&value)
virtual const char * GetServiceRequestName() const override
DeregisterTargetsRequest & AddTargets(TargetsT &&value)
void SetTargetGroupIdentifier(TargetGroupIdentifierT &&value)
AWS_VPCLATTICE_API DeregisterTargetsRequest()=default
DeregisterTargetsRequest & WithTargetGroupIdentifier(TargetGroupIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector