/** * 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 Batch { namespace Model { /** */ class AWS_BATCH_API DeleteJobQueueRequest : public BatchRequest { public: DeleteJobQueueRequest(); // 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 "DeleteJobQueue"; } Aws::String SerializePayload() const override; /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline const Aws::String& GetJobQueue() const{ return m_jobQueue; } /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline bool JobQueueHasBeenSet() const { return m_jobQueueHasBeenSet; } /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline void SetJobQueue(const Aws::String& value) { m_jobQueueHasBeenSet = true; m_jobQueue = value; } /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline void SetJobQueue(Aws::String&& value) { m_jobQueueHasBeenSet = true; m_jobQueue = std::move(value); } /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline void SetJobQueue(const char* value) { m_jobQueueHasBeenSet = true; m_jobQueue.assign(value); } /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline DeleteJobQueueRequest& WithJobQueue(const Aws::String& value) { SetJobQueue(value); return *this;} /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline DeleteJobQueueRequest& WithJobQueue(Aws::String&& value) { SetJobQueue(std::move(value)); return *this;} /** *

The short name or full Amazon Resource Name (ARN) of the queue to delete.

*/ inline DeleteJobQueueRequest& WithJobQueue(const char* value) { SetJobQueue(value); return *this;} private: Aws::String m_jobQueue; bool m_jobQueueHasBeenSet; }; } // namespace Model } // namespace Batch } // namespace Aws