/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies a weekly recurrence pattern for running a classification
* job.See Also:
AWS
* API Reference
The day of the week when Amazon Macie runs the job.
*/ inline const DayOfWeek& GetDayOfWeek() const{ return m_dayOfWeek; } /** *The day of the week when Amazon Macie runs the job.
*/ inline bool DayOfWeekHasBeenSet() const { return m_dayOfWeekHasBeenSet; } /** *The day of the week when Amazon Macie runs the job.
*/ inline void SetDayOfWeek(const DayOfWeek& value) { m_dayOfWeekHasBeenSet = true; m_dayOfWeek = value; } /** *The day of the week when Amazon Macie runs the job.
*/ inline void SetDayOfWeek(DayOfWeek&& value) { m_dayOfWeekHasBeenSet = true; m_dayOfWeek = std::move(value); } /** *The day of the week when Amazon Macie runs the job.
*/ inline WeeklySchedule& WithDayOfWeek(const DayOfWeek& value) { SetDayOfWeek(value); return *this;} /** *The day of the week when Amazon Macie runs the job.
*/ inline WeeklySchedule& WithDayOfWeek(DayOfWeek&& value) { SetDayOfWeek(std::move(value)); return *this;} private: DayOfWeek m_dayOfWeek; bool m_dayOfWeekHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws