AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
LivenessOutputConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/rekognition/Rekognition_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Rekognition {
20namespace Model {
21
32 public:
33 AWS_REKOGNITION_API LivenessOutputConfig() = default;
34 AWS_REKOGNITION_API LivenessOutputConfig(Aws::Utils::Json::JsonView jsonValue);
36 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
43 inline const Aws::String& GetS3Bucket() const { return m_s3Bucket; }
44 inline bool S3BucketHasBeenSet() const { return m_s3BucketHasBeenSet; }
45 template <typename S3BucketT = Aws::String>
46 void SetS3Bucket(S3BucketT&& value) {
47 m_s3BucketHasBeenSet = true;
48 m_s3Bucket = std::forward<S3BucketT>(value);
49 }
50 template <typename S3BucketT = Aws::String>
51 LivenessOutputConfig& WithS3Bucket(S3BucketT&& value) {
52 SetS3Bucket(std::forward<S3BucketT>(value));
53 return *this;
54 }
56
58
62 inline const Aws::String& GetS3KeyPrefix() const { return m_s3KeyPrefix; }
63 inline bool S3KeyPrefixHasBeenSet() const { return m_s3KeyPrefixHasBeenSet; }
64 template <typename S3KeyPrefixT = Aws::String>
65 void SetS3KeyPrefix(S3KeyPrefixT&& value) {
66 m_s3KeyPrefixHasBeenSet = true;
67 m_s3KeyPrefix = std::forward<S3KeyPrefixT>(value);
68 }
69 template <typename S3KeyPrefixT = Aws::String>
70 LivenessOutputConfig& WithS3KeyPrefix(S3KeyPrefixT&& value) {
71 SetS3KeyPrefix(std::forward<S3KeyPrefixT>(value));
72 return *this;
73 }
75 private:
76 Aws::String m_s3Bucket;
77
78 Aws::String m_s3KeyPrefix;
79 bool m_s3BucketHasBeenSet = false;
80 bool m_s3KeyPrefixHasBeenSet = false;
81};
82
83} // namespace Model
84} // namespace Rekognition
85} // namespace Aws
LivenessOutputConfig & WithS3Bucket(S3BucketT &&value)
AWS_REKOGNITION_API LivenessOutputConfig()=default
LivenessOutputConfig & WithS3KeyPrefix(S3KeyPrefixT &&value)
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_REKOGNITION_API LivenessOutputConfig(Aws::Utils::Json::JsonView jsonValue)
AWS_REKOGNITION_API LivenessOutputConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue