/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This input determines which bootstrap actions to retrieve.See
* Also:
AWS
* API Reference
The cluster identifier for the bootstrap actions to list.
*/ inline const Aws::String& GetClusterId() const{ return m_clusterId; } /** *The cluster identifier for the bootstrap actions to list.
*/ inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; } /** *The cluster identifier for the bootstrap actions to list.
*/ inline void SetClusterId(const Aws::String& value) { m_clusterIdHasBeenSet = true; m_clusterId = value; } /** *The cluster identifier for the bootstrap actions to list.
*/ inline void SetClusterId(Aws::String&& value) { m_clusterIdHasBeenSet = true; m_clusterId = std::move(value); } /** *The cluster identifier for the bootstrap actions to list.
*/ inline void SetClusterId(const char* value) { m_clusterIdHasBeenSet = true; m_clusterId.assign(value); } /** *The cluster identifier for the bootstrap actions to list.
*/ inline ListBootstrapActionsRequest& WithClusterId(const Aws::String& value) { SetClusterId(value); return *this;} /** *The cluster identifier for the bootstrap actions to list.
*/ inline ListBootstrapActionsRequest& WithClusterId(Aws::String&& value) { SetClusterId(std::move(value)); return *this;} /** *The cluster identifier for the bootstrap actions to list.
*/ inline ListBootstrapActionsRequest& WithClusterId(const char* value) { SetClusterId(value); return *this;} /** *The pagination token that indicates the next set of results to retrieve.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *The pagination token that indicates the next set of results to retrieve.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *The pagination token that indicates the next set of results to retrieve.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *The pagination token that indicates the next set of results to retrieve.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *The pagination token that indicates the next set of results to retrieve.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *The pagination token that indicates the next set of results to retrieve.
*/ inline ListBootstrapActionsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *The pagination token that indicates the next set of results to retrieve.
*/ inline ListBootstrapActionsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *The pagination token that indicates the next set of results to retrieve.
*/ inline ListBootstrapActionsRequest& WithMarker(const char* value) { SetMarker(value); return *this;} private: Aws::String m_clusterId; bool m_clusterIdHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; }; } // namespace Model } // namespace EMR } // namespace Aws