AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SrtCallerDecryptionRequest.h
1
6#pragma once
7#include <aws/medialive/MediaLive_EXPORTS.h>
8#include <aws/medialive/model/Algorithm.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace MediaLive
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_MEDIALIVE_API SrtCallerDecryptionRequest();
39 AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Algorithm& GetAlgorithm() const{ return m_algorithm; }
47 inline bool AlgorithmHasBeenSet() const { return m_algorithmHasBeenSet; }
48 inline void SetAlgorithm(const Algorithm& value) { m_algorithmHasBeenSet = true; m_algorithm = value; }
49 inline void SetAlgorithm(Algorithm&& value) { m_algorithmHasBeenSet = true; m_algorithm = std::move(value); }
50 inline SrtCallerDecryptionRequest& WithAlgorithm(const Algorithm& value) { SetAlgorithm(value); return *this;}
51 inline SrtCallerDecryptionRequest& WithAlgorithm(Algorithm&& value) { SetAlgorithm(std::move(value)); return *this;}
53
55
60 inline const Aws::String& GetPassphraseSecretArn() const{ return m_passphraseSecretArn; }
61 inline bool PassphraseSecretArnHasBeenSet() const { return m_passphraseSecretArnHasBeenSet; }
62 inline void SetPassphraseSecretArn(const Aws::String& value) { m_passphraseSecretArnHasBeenSet = true; m_passphraseSecretArn = value; }
63 inline void SetPassphraseSecretArn(Aws::String&& value) { m_passphraseSecretArnHasBeenSet = true; m_passphraseSecretArn = std::move(value); }
64 inline void SetPassphraseSecretArn(const char* value) { m_passphraseSecretArnHasBeenSet = true; m_passphraseSecretArn.assign(value); }
66 inline SrtCallerDecryptionRequest& WithPassphraseSecretArn(Aws::String&& value) { SetPassphraseSecretArn(std::move(value)); return *this;}
67 inline SrtCallerDecryptionRequest& WithPassphraseSecretArn(const char* value) { SetPassphraseSecretArn(value); return *this;}
69 private:
70
71 Algorithm m_algorithm;
72 bool m_algorithmHasBeenSet = false;
73
74 Aws::String m_passphraseSecretArn;
75 bool m_passphraseSecretArnHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace MediaLive
80} // namespace Aws
AWS_MEDIALIVE_API SrtCallerDecryptionRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
SrtCallerDecryptionRequest & WithPassphraseSecretArn(const Aws::String &value)
AWS_MEDIALIVE_API SrtCallerDecryptionRequest(Aws::Utils::Json::JsonView jsonValue)
AWS_MEDIALIVE_API Aws::Utils::Json::JsonValue Jsonize() const
SrtCallerDecryptionRequest & WithAlgorithm(const Algorithm &value)
SrtCallerDecryptionRequest & WithAlgorithm(Algorithm &&value)
SrtCallerDecryptionRequest & WithPassphraseSecretArn(const char *value)
SrtCallerDecryptionRequest & WithPassphraseSecretArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue