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

The location where Audit Manager saves assessment reports for the given * assessment.

See Also:

AWS * API Reference

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

The destination type, such as Amazon S3.

*/ inline const AssessmentReportDestinationType& GetDestinationType() const{ return m_destinationType; } /** *

The destination type, such as Amazon S3.

*/ inline bool DestinationTypeHasBeenSet() const { return m_destinationTypeHasBeenSet; } /** *

The destination type, such as Amazon S3.

*/ inline void SetDestinationType(const AssessmentReportDestinationType& value) { m_destinationTypeHasBeenSet = true; m_destinationType = value; } /** *

The destination type, such as Amazon S3.

*/ inline void SetDestinationType(AssessmentReportDestinationType&& value) { m_destinationTypeHasBeenSet = true; m_destinationType = std::move(value); } /** *

The destination type, such as Amazon S3.

*/ inline AssessmentReportsDestination& WithDestinationType(const AssessmentReportDestinationType& value) { SetDestinationType(value); return *this;} /** *

The destination type, such as Amazon S3.

*/ inline AssessmentReportsDestination& WithDestinationType(AssessmentReportDestinationType&& value) { SetDestinationType(std::move(value)); return *this;} /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline const Aws::String& GetDestination() const{ return m_destination; } /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline bool DestinationHasBeenSet() const { return m_destinationHasBeenSet; } /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline void SetDestination(const Aws::String& value) { m_destinationHasBeenSet = true; m_destination = value; } /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline void SetDestination(Aws::String&& value) { m_destinationHasBeenSet = true; m_destination = std::move(value); } /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline void SetDestination(const char* value) { m_destinationHasBeenSet = true; m_destination.assign(value); } /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline AssessmentReportsDestination& WithDestination(const Aws::String& value) { SetDestination(value); return *this;} /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline AssessmentReportsDestination& WithDestination(Aws::String&& value) { SetDestination(std::move(value)); return *this;} /** *

The destination bucket where Audit Manager stores assessment reports.

*/ inline AssessmentReportsDestination& WithDestination(const char* value) { SetDestination(value); return *this;} private: AssessmentReportDestinationType m_destinationType; bool m_destinationTypeHasBeenSet = false; Aws::String m_destination; bool m_destinationHasBeenSet = false; }; } // namespace Model } // namespace AuditManager } // namespace Aws