AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ExportCertificateRequest.h
1
6#pragma once
7#include <aws/acm/ACM_EXPORTS.h>
8#include <aws/acm/ACMRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/Array.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ACM
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_ACM_API ExportCertificateRequest() = default;
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 "ExportCertificate"; }
32
33 AWS_ACM_API Aws::String SerializePayload() const override;
34
36
37
39
45 inline const Aws::String& GetCertificateArn() const { return m_certificateArn; }
46 inline bool CertificateArnHasBeenSet() const { return m_certificateArnHasBeenSet; }
47 template<typename CertificateArnT = Aws::String>
48 void SetCertificateArn(CertificateArnT&& value) { m_certificateArnHasBeenSet = true; m_certificateArn = std::forward<CertificateArnT>(value); }
49 template<typename CertificateArnT = Aws::String>
50 ExportCertificateRequest& WithCertificateArn(CertificateArnT&& value) { SetCertificateArn(std::forward<CertificateArnT>(value)); return *this;}
52
54
62 inline const Aws::Utils::CryptoBuffer& GetPassphrase() const { return m_passphrase; }
63 inline bool PassphraseHasBeenSet() const { return m_passphraseHasBeenSet; }
64 template<typename PassphraseT = Aws::Utils::CryptoBuffer>
65 void SetPassphrase(PassphraseT&& value) { m_passphraseHasBeenSet = true; m_passphrase = std::forward<PassphraseT>(value); }
66 template<typename PassphraseT = Aws::Utils::CryptoBuffer>
67 ExportCertificateRequest& WithPassphrase(PassphraseT&& value) { SetPassphrase(std::forward<PassphraseT>(value)); return *this;}
69 private:
70
71 Aws::String m_certificateArn;
72 bool m_certificateArnHasBeenSet = false;
73
74 Aws::Utils::CryptoBuffer m_passphrase{};
75 bool m_passphraseHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace ACM
80} // namespace Aws
ExportCertificateRequest & WithPassphrase(PassphraseT &&value)
ExportCertificateRequest & WithCertificateArn(CertificateArnT &&value)
AWS_ACM_API Aws::String SerializePayload() const override
AWS_ACM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
AWS_ACM_API ExportCertificateRequest()=default
const Aws::Utils::CryptoBuffer & GetPassphrase() const
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String