AWS SDK for C++

AWS SDK for C++ Version 1.11.710

Loading...
Searching...
No Matches
DisassociateBenefitApplicationResourceRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/partnercentral-benefits/PartnerCentralBenefitsRequest.h>
9#include <aws/partnercentral-benefits/PartnerCentralBenefits_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace PartnerCentralBenefits {
15namespace Model {
16
20 public:
21 AWS_PARTNERCENTRALBENEFITS_API DisassociateBenefitApplicationResourceRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DisassociateBenefitApplicationResource"; }
28
29 AWS_PARTNERCENTRALBENEFITS_API Aws::String SerializePayload() const override;
30
31 AWS_PARTNERCENTRALBENEFITS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
32
34
38 inline const Aws::String& GetCatalog() const { return m_catalog; }
39 inline bool CatalogHasBeenSet() const { return m_catalogHasBeenSet; }
40 template <typename CatalogT = Aws::String>
41 void SetCatalog(CatalogT&& value) {
42 m_catalogHasBeenSet = true;
43 m_catalog = std::forward<CatalogT>(value);
44 }
45 template <typename CatalogT = Aws::String>
47 SetCatalog(std::forward<CatalogT>(value));
48 return *this;
49 }
51
53
57 inline const Aws::String& GetBenefitApplicationIdentifier() const { return m_benefitApplicationIdentifier; }
58 inline bool BenefitApplicationIdentifierHasBeenSet() const { return m_benefitApplicationIdentifierHasBeenSet; }
59 template <typename BenefitApplicationIdentifierT = Aws::String>
60 void SetBenefitApplicationIdentifier(BenefitApplicationIdentifierT&& value) {
61 m_benefitApplicationIdentifierHasBeenSet = true;
62 m_benefitApplicationIdentifier = std::forward<BenefitApplicationIdentifierT>(value);
63 }
64 template <typename BenefitApplicationIdentifierT = Aws::String>
66 SetBenefitApplicationIdentifier(std::forward<BenefitApplicationIdentifierT>(value));
67 return *this;
68 }
70
72
76 inline const Aws::String& GetResourceArn() const { return m_resourceArn; }
77 inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
78 template <typename ResourceArnT = Aws::String>
79 void SetResourceArn(ResourceArnT&& value) {
80 m_resourceArnHasBeenSet = true;
81 m_resourceArn = std::forward<ResourceArnT>(value);
82 }
83 template <typename ResourceArnT = Aws::String>
85 SetResourceArn(std::forward<ResourceArnT>(value));
86 return *this;
87 }
89 private:
90 Aws::String m_catalog;
91
92 Aws::String m_benefitApplicationIdentifier;
93
94 Aws::String m_resourceArn;
95 bool m_catalogHasBeenSet = false;
96 bool m_benefitApplicationIdentifierHasBeenSet = false;
97 bool m_resourceArnHasBeenSet = false;
98};
99
100} // namespace Model
101} // namespace PartnerCentralBenefits
102} // namespace Aws
AWS_PARTNERCENTRALBENEFITS_API Aws::String SerializePayload() const override
AWS_PARTNERCENTRALBENEFITS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DisassociateBenefitApplicationResourceRequest & WithBenefitApplicationIdentifier(BenefitApplicationIdentifierT &&value)
AWS_PARTNERCENTRALBENEFITS_API DisassociateBenefitApplicationResourceRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String