154 lines
6.4 KiB
C
154 lines
6.4 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/glue/Glue_EXPORTS.h>
|
|||
|
|
#include <aws/glue/GlueRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Glue
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_GLUE_API UpdateCrawlerScheduleRequest : public GlueRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateCrawlerScheduleRequest();
|
|||
|
|
|
|||
|
|
// 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 "UpdateCrawlerSchedule"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetCrawlerName() const{ return m_crawlerName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CrawlerNameHasBeenSet() const { return m_crawlerNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCrawlerName(const Aws::String& value) { m_crawlerNameHasBeenSet = true; m_crawlerName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCrawlerName(Aws::String&& value) { m_crawlerNameHasBeenSet = true; m_crawlerName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCrawlerName(const char* value) { m_crawlerNameHasBeenSet = true; m_crawlerName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithCrawlerName(const Aws::String& value) { SetCrawlerName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithCrawlerName(Aws::String&& value) { SetCrawlerName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the crawler whose schedule to update.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithCrawlerName(const char* value) { SetCrawlerName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSchedule() const{ return m_schedule; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ScheduleHasBeenSet() const { return m_scheduleHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSchedule(const Aws::String& value) { m_scheduleHasBeenSet = true; m_schedule = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSchedule(Aws::String&& value) { m_scheduleHasBeenSet = true; m_schedule = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSchedule(const char* value) { m_scheduleHasBeenSet = true; m_schedule.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithSchedule(const Aws::String& value) { SetSchedule(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithSchedule(Aws::String&& value) { SetSchedule(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The updated <code>cron</code> expression used to specify the schedule (see <a
|
|||
|
|
* href="https://docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html">Time-Based
|
|||
|
|
* Schedules for Jobs and Crawlers</a>. For example, to run something every day at
|
|||
|
|
* 12:15 UTC, you would specify: <code>cron(15 12 * * ? *)</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateCrawlerScheduleRequest& WithSchedule(const char* value) { SetSchedule(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_crawlerName;
|
|||
|
|
bool m_crawlerNameHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_schedule;
|
|||
|
|
bool m_scheduleHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Glue
|
|||
|
|
} // namespace Aws
|