/** * 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 QuickSight { namespace Model { /** */ class DescribeRefreshScheduleRequest : public QuickSightRequest { public: AWS_QUICKSIGHT_API DescribeRefreshScheduleRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeRefreshSchedule"; } AWS_QUICKSIGHT_API Aws::String SerializePayload() const override; /** *

The Amazon Web Services account ID.

*/ inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; } /** *

The Amazon Web Services account ID.

*/ inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; } /** *

The Amazon Web Services account ID.

*/ inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; } /** *

The Amazon Web Services account ID.

*/ inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); } /** *

The Amazon Web Services account ID.

*/ inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); } /** *

The Amazon Web Services account ID.

*/ inline DescribeRefreshScheduleRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;} /** *

The Amazon Web Services account ID.

*/ inline DescribeRefreshScheduleRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;} /** *

The Amazon Web Services account ID.

*/ inline DescribeRefreshScheduleRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;} /** *

The ID of the dataset.

*/ inline const Aws::String& GetDataSetId() const{ return m_dataSetId; } /** *

The ID of the dataset.

*/ inline bool DataSetIdHasBeenSet() const { return m_dataSetIdHasBeenSet; } /** *

The ID of the dataset.

*/ inline void SetDataSetId(const Aws::String& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = value; } /** *

The ID of the dataset.

*/ inline void SetDataSetId(Aws::String&& value) { m_dataSetIdHasBeenSet = true; m_dataSetId = std::move(value); } /** *

The ID of the dataset.

*/ inline void SetDataSetId(const char* value) { m_dataSetIdHasBeenSet = true; m_dataSetId.assign(value); } /** *

The ID of the dataset.

*/ inline DescribeRefreshScheduleRequest& WithDataSetId(const Aws::String& value) { SetDataSetId(value); return *this;} /** *

The ID of the dataset.

*/ inline DescribeRefreshScheduleRequest& WithDataSetId(Aws::String&& value) { SetDataSetId(std::move(value)); return *this;} /** *

The ID of the dataset.

*/ inline DescribeRefreshScheduleRequest& WithDataSetId(const char* value) { SetDataSetId(value); return *this;} /** *

The ID of the refresh schedule.

*/ inline const Aws::String& GetScheduleId() const{ return m_scheduleId; } /** *

The ID of the refresh schedule.

*/ inline bool ScheduleIdHasBeenSet() const { return m_scheduleIdHasBeenSet; } /** *

The ID of the refresh schedule.

*/ inline void SetScheduleId(const Aws::String& value) { m_scheduleIdHasBeenSet = true; m_scheduleId = value; } /** *

The ID of the refresh schedule.

*/ inline void SetScheduleId(Aws::String&& value) { m_scheduleIdHasBeenSet = true; m_scheduleId = std::move(value); } /** *

The ID of the refresh schedule.

*/ inline void SetScheduleId(const char* value) { m_scheduleIdHasBeenSet = true; m_scheduleId.assign(value); } /** *

The ID of the refresh schedule.

*/ inline DescribeRefreshScheduleRequest& WithScheduleId(const Aws::String& value) { SetScheduleId(value); return *this;} /** *

The ID of the refresh schedule.

*/ inline DescribeRefreshScheduleRequest& WithScheduleId(Aws::String&& value) { SetScheduleId(std::move(value)); return *this;} /** *

The ID of the refresh schedule.

*/ inline DescribeRefreshScheduleRequest& WithScheduleId(const char* value) { SetScheduleId(value); return *this;} private: Aws::String m_awsAccountId; bool m_awsAccountIdHasBeenSet = false; Aws::String m_dataSetId; bool m_dataSetIdHasBeenSet = false; Aws::String m_scheduleId; bool m_scheduleIdHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws