/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace Scheduler { namespace Model { /** */ class DeleteScheduleGroupRequest : public SchedulerRequest { public: AWS_SCHEDULER_API DeleteScheduleGroupRequest(); // 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 "DeleteScheduleGroup"; } AWS_SCHEDULER_API Aws::String SerializePayload() const override; AWS_SCHEDULER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline DeleteScheduleGroupRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline DeleteScheduleGroupRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier you provide to ensure the idempotency of * the request. If you do not specify a client token, EventBridge Scheduler uses a * randomly generated token for the request to ensure idempotency.

*/ inline DeleteScheduleGroupRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

The name of the schedule group to delete.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the schedule group to delete.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the schedule group to delete.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the schedule group to delete.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the schedule group to delete.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the schedule group to delete.

*/ inline DeleteScheduleGroupRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the schedule group to delete.

*/ inline DeleteScheduleGroupRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the schedule group to delete.

*/ inline DeleteScheduleGroupRequest& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace Scheduler } // namespace Aws