AWS SDK for C++

AWS SDK for C++ Version 1.11.847

Loading...
Searching...
No Matches
DeleteCertificateRequest.h
1
6#pragma once
7#include <aws/acm/ACMRequest.h>
8#include <aws/acm/ACM_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ACM {
15namespace Model {
16
20 public:
21 AWS_ACM_API DeleteCertificateRequest() = 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 "DeleteCertificate"; }
28
29 AWS_ACM_API Aws::String SerializePayload() const override;
30
32
36 AWS_ACM_API EndpointParameters GetEndpointContextParams() const override;
37
39
47 inline const Aws::String& GetCertificateArn() const { return m_certificateArn; }
48 inline bool CertificateArnHasBeenSet() const { return m_certificateArnHasBeenSet; }
49 template <typename CertificateArnT = Aws::String>
50 void SetCertificateArn(CertificateArnT&& value) {
51 m_certificateArnHasBeenSet = true;
52 m_certificateArn = std::forward<CertificateArnT>(value);
53 }
54 template <typename CertificateArnT = Aws::String>
55 DeleteCertificateRequest& WithCertificateArn(CertificateArnT&& value) {
56 SetCertificateArn(std::forward<CertificateArnT>(value));
57 return *this;
58 }
60 private:
61 Aws::String m_certificateArn;
62 bool m_certificateArnHasBeenSet = false;
63};
64
65} // namespace Model
66} // namespace ACM
67} // namespace Aws
Aws::Endpoint::EndpointParameters EndpointParameters
Definition ACMRequest.h:18
AWS_ACM_API EndpointParameters GetEndpointContextParams() const override
AWS_ACM_API DeleteCertificateRequest()=default
virtual const char * GetServiceRequestName() const override
AWS_ACM_API Aws::String SerializePayload() const override
DeleteCertificateRequest & WithCertificateArn(CertificateArnT &&value)
AWS_ACM_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