AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetViolationDetailsRequest.h
1
6#pragma once
7#include <aws/fms/FMS_EXPORTS.h>
8#include <aws/fms/FMSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace FMS
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetViolationDetails"; }
31
32 AWS_FMS_API Aws::String SerializePayload() const override;
33
35
36
38
45 inline const Aws::String& GetPolicyId() const{ return m_policyId; }
46 inline bool PolicyIdHasBeenSet() const { return m_policyIdHasBeenSet; }
47 inline void SetPolicyId(const Aws::String& value) { m_policyIdHasBeenSet = true; m_policyId = value; }
48 inline void SetPolicyId(Aws::String&& value) { m_policyIdHasBeenSet = true; m_policyId = std::move(value); }
49 inline void SetPolicyId(const char* value) { m_policyIdHasBeenSet = true; m_policyId.assign(value); }
50 inline GetViolationDetailsRequest& WithPolicyId(const Aws::String& value) { SetPolicyId(value); return *this;}
51 inline GetViolationDetailsRequest& WithPolicyId(Aws::String&& value) { SetPolicyId(std::move(value)); return *this;}
52 inline GetViolationDetailsRequest& WithPolicyId(const char* value) { SetPolicyId(value); return *this;}
54
56
59 inline const Aws::String& GetMemberAccount() const{ return m_memberAccount; }
60 inline bool MemberAccountHasBeenSet() const { return m_memberAccountHasBeenSet; }
61 inline void SetMemberAccount(const Aws::String& value) { m_memberAccountHasBeenSet = true; m_memberAccount = value; }
62 inline void SetMemberAccount(Aws::String&& value) { m_memberAccountHasBeenSet = true; m_memberAccount = std::move(value); }
63 inline void SetMemberAccount(const char* value) { m_memberAccountHasBeenSet = true; m_memberAccount.assign(value); }
64 inline GetViolationDetailsRequest& WithMemberAccount(const Aws::String& value) { SetMemberAccount(value); return *this;}
65 inline GetViolationDetailsRequest& WithMemberAccount(Aws::String&& value) { SetMemberAccount(std::move(value)); return *this;}
66 inline GetViolationDetailsRequest& WithMemberAccount(const char* value) { SetMemberAccount(value); return *this;}
68
70
73 inline const Aws::String& GetResourceId() const{ return m_resourceId; }
74 inline bool ResourceIdHasBeenSet() const { return m_resourceIdHasBeenSet; }
75 inline void SetResourceId(const Aws::String& value) { m_resourceIdHasBeenSet = true; m_resourceId = value; }
76 inline void SetResourceId(Aws::String&& value) { m_resourceIdHasBeenSet = true; m_resourceId = std::move(value); }
77 inline void SetResourceId(const char* value) { m_resourceIdHasBeenSet = true; m_resourceId.assign(value); }
78 inline GetViolationDetailsRequest& WithResourceId(const Aws::String& value) { SetResourceId(value); return *this;}
79 inline GetViolationDetailsRequest& WithResourceId(Aws::String&& value) { SetResourceId(std::move(value)); return *this;}
80 inline GetViolationDetailsRequest& WithResourceId(const char* value) { SetResourceId(value); return *this;}
82
84
93 inline const Aws::String& GetResourceType() const{ return m_resourceType; }
94 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
95 inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
96 inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
97 inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); }
98 inline GetViolationDetailsRequest& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;}
99 inline GetViolationDetailsRequest& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;}
100 inline GetViolationDetailsRequest& WithResourceType(const char* value) { SetResourceType(value); return *this;}
102 private:
103
104 Aws::String m_policyId;
105 bool m_policyIdHasBeenSet = false;
106
107 Aws::String m_memberAccount;
108 bool m_memberAccountHasBeenSet = false;
109
110 Aws::String m_resourceId;
111 bool m_resourceIdHasBeenSet = false;
112
113 Aws::String m_resourceType;
114 bool m_resourceTypeHasBeenSet = false;
115 };
116
117} // namespace Model
118} // namespace FMS
119} // namespace Aws
GetViolationDetailsRequest & WithResourceId(const Aws::String &value)
GetViolationDetailsRequest & WithMemberAccount(Aws::String &&value)
GetViolationDetailsRequest & WithResourceType(const Aws::String &value)
GetViolationDetailsRequest & WithPolicyId(Aws::String &&value)
GetViolationDetailsRequest & WithResourceId(const char *value)
GetViolationDetailsRequest & WithMemberAccount(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
GetViolationDetailsRequest & WithPolicyId(const Aws::String &value)
GetViolationDetailsRequest & WithResourceType(Aws::String &&value)
GetViolationDetailsRequest & WithMemberAccount(const char *value)
GetViolationDetailsRequest & WithPolicyId(const char *value)
GetViolationDetailsRequest & WithResourceType(const char *value)
AWS_FMS_API Aws::String SerializePayload() const override
GetViolationDetailsRequest & WithResourceId(Aws::String &&value)
AWS_FMS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String