AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AuditLogProcessingConfiguration.h
1
6#pragma once
7#include <aws/appfabric/AppFabric_EXPORTS.h>
8#include <aws/appfabric/model/Schema.h>
9#include <aws/appfabric/model/Format.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 AppFabric
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_APPFABRIC_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Schema& GetSchema() const{ return m_schema; }
47 inline bool SchemaHasBeenSet() const { return m_schemaHasBeenSet; }
48 inline void SetSchema(const Schema& value) { m_schemaHasBeenSet = true; m_schema = value; }
49 inline void SetSchema(Schema&& value) { m_schemaHasBeenSet = true; m_schema = std::move(value); }
50 inline AuditLogProcessingConfiguration& WithSchema(const Schema& value) { SetSchema(value); return *this;}
51 inline AuditLogProcessingConfiguration& WithSchema(Schema&& value) { SetSchema(std::move(value)); return *this;}
53
55
58 inline const Format& GetFormat() const{ return m_format; }
59 inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; }
60 inline void SetFormat(const Format& value) { m_formatHasBeenSet = true; m_format = value; }
61 inline void SetFormat(Format&& value) { m_formatHasBeenSet = true; m_format = std::move(value); }
62 inline AuditLogProcessingConfiguration& WithFormat(const Format& value) { SetFormat(value); return *this;}
63 inline AuditLogProcessingConfiguration& WithFormat(Format&& value) { SetFormat(std::move(value)); return *this;}
65 private:
66
67 Schema m_schema;
68 bool m_schemaHasBeenSet = false;
69
70 Format m_format;
71 bool m_formatHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace AppFabric
76} // namespace Aws
AuditLogProcessingConfiguration & WithFormat(Format &&value)
AWS_APPFABRIC_API Aws::Utils::Json::JsonValue Jsonize() const
AuditLogProcessingConfiguration & WithFormat(const Format &value)
AuditLogProcessingConfiguration & WithSchema(Schema &&value)
AuditLogProcessingConfiguration & WithSchema(const Schema &value)
AWS_APPFABRIC_API AuditLogProcessingConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_APPFABRIC_API AuditLogProcessingConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue