/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input for a request action.See Also:
AWS
* API Reference
A list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline const Aws::VectorA list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline bool FleetIdsHasBeenSet() const { return m_fleetIdsHasBeenSet; } /** *A list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline void SetFleetIds(const Aws::VectorA list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline void SetFleetIds(Aws::VectorA list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline DescribeFleetAttributesRequest& WithFleetIds(const Aws::VectorA list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline DescribeFleetAttributesRequest& WithFleetIds(Aws::VectorA list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline DescribeFleetAttributesRequest& AddFleetIds(const Aws::String& value) { m_fleetIdsHasBeenSet = true; m_fleetIds.push_back(value); return *this; } /** *A list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline DescribeFleetAttributesRequest& AddFleetIds(Aws::String&& value) { m_fleetIdsHasBeenSet = true; m_fleetIds.push_back(std::move(value)); return *this; } /** *A list of unique fleet identifiers to retrieve attributes for. You can use * either the fleet ID or ARN value. To retrieve attributes for all current fleets, * do not include this parameter. If the list of fleet identifiers includes fleets * that don't currently exist, the request succeeds but no attributes for that * fleet are returned.
*/ inline DescribeFleetAttributesRequest& AddFleetIds(const char* value) { m_fleetIdsHasBeenSet = true; m_fleetIds.push_back(value); return *this; } /** *The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages. This
* parameter is ignored when the request specifies one or a list of fleet IDs.
The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages. This
* parameter is ignored when the request specifies one or a list of fleet IDs.
The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages. This
* parameter is ignored when the request specifies one or a list of fleet IDs.
The maximum number of results to return. Use this parameter with
* NextToken to get results as a set of sequential pages. This
* parameter is ignored when the request specifies one or a list of fleet IDs.
Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline DescribeFleetAttributesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline DescribeFleetAttributesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *Token that indicates the start of the next sequential page of results. Use * the token that is returned with a previous call to this action. To start at the * beginning of the result set, do not specify a value. This parameter is ignored * when the request specifies one or a list of fleet IDs.
*/ inline DescribeFleetAttributesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector