/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AppFabric { namespace Model { /** *

Contains information about how ingested data is processed.

See * Also:

AWS * API Reference

*/ class ProcessingConfiguration { public: AWS_APPFABRIC_API ProcessingConfiguration(); AWS_APPFABRIC_API ProcessingConfiguration(Aws::Utils::Json::JsonView jsonValue); AWS_APPFABRIC_API ProcessingConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_APPFABRIC_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Contains information about an audit log processing configuration.

*/ inline const AuditLogProcessingConfiguration& GetAuditLog() const{ return m_auditLog; } /** *

Contains information about an audit log processing configuration.

*/ inline bool AuditLogHasBeenSet() const { return m_auditLogHasBeenSet; } /** *

Contains information about an audit log processing configuration.

*/ inline void SetAuditLog(const AuditLogProcessingConfiguration& value) { m_auditLogHasBeenSet = true; m_auditLog = value; } /** *

Contains information about an audit log processing configuration.

*/ inline void SetAuditLog(AuditLogProcessingConfiguration&& value) { m_auditLogHasBeenSet = true; m_auditLog = std::move(value); } /** *

Contains information about an audit log processing configuration.

*/ inline ProcessingConfiguration& WithAuditLog(const AuditLogProcessingConfiguration& value) { SetAuditLog(value); return *this;} /** *

Contains information about an audit log processing configuration.

*/ inline ProcessingConfiguration& WithAuditLog(AuditLogProcessingConfiguration&& value) { SetAuditLog(std::move(value)); return *this;} private: AuditLogProcessingConfiguration m_auditLog; bool m_auditLogHasBeenSet = false; }; } // namespace Model } // namespace AppFabric } // namespace Aws