/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure used to include auditing information on the privileged API.
* See Also:
AWS
* API Reference
The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline const Aws::String& GetAdditionalAuditContext() const{ return m_additionalAuditContext; } /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline bool AdditionalAuditContextHasBeenSet() const { return m_additionalAuditContextHasBeenSet; } /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline void SetAdditionalAuditContext(const Aws::String& value) { m_additionalAuditContextHasBeenSet = true; m_additionalAuditContext = value; } /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline void SetAdditionalAuditContext(Aws::String&& value) { m_additionalAuditContextHasBeenSet = true; m_additionalAuditContext = std::move(value); } /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline void SetAdditionalAuditContext(const char* value) { m_additionalAuditContextHasBeenSet = true; m_additionalAuditContext.assign(value); } /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline AuditContext& WithAdditionalAuditContext(const Aws::String& value) { SetAdditionalAuditContext(value); return *this;} /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline AuditContext& WithAdditionalAuditContext(Aws::String&& value) { SetAdditionalAuditContext(std::move(value)); return *this;} /** *The filter engine can populate the 'AdditionalAuditContext' information with * the request ID for you to track. This information will be displayed in * CloudTrail log in your account.
*/ inline AuditContext& WithAdditionalAuditContext(const char* value) { SetAdditionalAuditContext(value); return *this;} private: Aws::String m_additionalAuditContext; bool m_additionalAuditContextHasBeenSet = false; }; } // namespace Model } // namespace LakeFormation } // namespace Aws