/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The configuration of the workgroup, which includes the location in Amazon
* Simple Storage Service (Amazon S3) where query results are stored, the
* encryption option, if any, used for query results, whether Amazon CloudWatch
* metrics are enabled for the workgroup, and the limit for the amount of bytes
* scanned (cutoff) per query, if it is specified. See Also:
AWS
* API Reference
The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline const AwsAthenaWorkGroupConfigurationResultConfigurationDetails& GetResultConfiguration() const{ return m_resultConfiguration; } /** *The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline bool ResultConfigurationHasBeenSet() const { return m_resultConfigurationHasBeenSet; } /** *The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline void SetResultConfiguration(const AwsAthenaWorkGroupConfigurationResultConfigurationDetails& value) { m_resultConfigurationHasBeenSet = true; m_resultConfiguration = value; } /** *The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline void SetResultConfiguration(AwsAthenaWorkGroupConfigurationResultConfigurationDetails&& value) { m_resultConfigurationHasBeenSet = true; m_resultConfiguration = std::move(value); } /** *The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline AwsAthenaWorkGroupConfigurationDetails& WithResultConfiguration(const AwsAthenaWorkGroupConfigurationResultConfigurationDetails& value) { SetResultConfiguration(value); return *this;} /** *The location in Amazon S3 where query and calculation results are stored and * the encryption option, if any, used for query and calculation results. These are * known as client-side settings. If workgroup settings override client-side * settings, then the query uses the workgroup settings.
*/ inline AwsAthenaWorkGroupConfigurationDetails& WithResultConfiguration(AwsAthenaWorkGroupConfigurationResultConfigurationDetails&& value) { SetResultConfiguration(std::move(value)); return *this;} private: AwsAthenaWorkGroupConfigurationResultConfigurationDetails m_resultConfiguration; bool m_resultConfigurationHasBeenSet = false; }; } // namespace Model } // namespace SecurityHub } // namespace Aws