84 lines
2.4 KiB
C++
84 lines
2.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/robomaker/RoboMaker_EXPORTS.h>
|
|
#include <aws/robomaker/RoboMakerRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace RoboMaker
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_ROBOMAKER_API DescribeSimulationJobBatchRequest : public RoboMakerRequest
|
|
{
|
|
public:
|
|
DescribeSimulationJobBatchRequest();
|
|
|
|
// 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 "DescribeSimulationJobBatch"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline const Aws::String& GetBatch() const{ return m_batch; }
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline bool BatchHasBeenSet() const { return m_batchHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline void SetBatch(const Aws::String& value) { m_batchHasBeenSet = true; m_batch = value; }
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline void SetBatch(Aws::String&& value) { m_batchHasBeenSet = true; m_batch = std::move(value); }
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline void SetBatch(const char* value) { m_batchHasBeenSet = true; m_batch.assign(value); }
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline DescribeSimulationJobBatchRequest& WithBatch(const Aws::String& value) { SetBatch(value); return *this;}
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline DescribeSimulationJobBatchRequest& WithBatch(Aws::String&& value) { SetBatch(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The id of the batch to describe.</p>
|
|
*/
|
|
inline DescribeSimulationJobBatchRequest& WithBatch(const char* value) { SetBatch(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_batch;
|
|
bool m_batchHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RoboMaker
|
|
} // namespace Aws
|