/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline const Aws::VectorThe list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline bool BrokerIdsHasBeenSet() const { return m_brokerIdsHasBeenSet; } /** *The list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline void SetBrokerIds(const Aws::VectorThe list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline void SetBrokerIds(Aws::VectorThe list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline RebootBrokerRequest& WithBrokerIds(const Aws::VectorThe list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline RebootBrokerRequest& WithBrokerIds(Aws::VectorThe list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline RebootBrokerRequest& AddBrokerIds(const Aws::String& value) { m_brokerIdsHasBeenSet = true; m_brokerIds.push_back(value); return *this; } /** *The list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline RebootBrokerRequest& AddBrokerIds(Aws::String&& value) { m_brokerIdsHasBeenSet = true; m_brokerIds.push_back(std::move(value)); return *this; } /** *The list of broker IDs to be rebooted. The reboot-broker * operation supports rebooting one broker at a time.
*/ inline RebootBrokerRequest& AddBrokerIds(const char* value) { m_brokerIdsHasBeenSet = true; m_brokerIds.push_back(value); return *this; } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline const Aws::String& GetClusterArn() const{ return m_clusterArn; } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline bool ClusterArnHasBeenSet() const { return m_clusterArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline void SetClusterArn(const Aws::String& value) { m_clusterArnHasBeenSet = true; m_clusterArn = value; } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline void SetClusterArn(Aws::String&& value) { m_clusterArnHasBeenSet = true; m_clusterArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline void SetClusterArn(const char* value) { m_clusterArnHasBeenSet = true; m_clusterArn.assign(value); } /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline RebootBrokerRequest& WithClusterArn(const Aws::String& value) { SetClusterArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline RebootBrokerRequest& WithClusterArn(Aws::String&& value) { SetClusterArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the cluster to be * updated.
*/ inline RebootBrokerRequest& WithClusterArn(const char* value) { SetClusterArn(value); return *this;} private: Aws::Vector