/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ECS { namespace Model { /** */ class ListContainerInstancesRequest : public ECSRequest { public: AWS_ECS_API ListContainerInstancesRequest(); // 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 "ListContainerInstances"; } AWS_ECS_API Aws::String SerializePayload() const override; AWS_ECS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline const Aws::String& GetCluster() const{ return m_cluster; } /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline bool ClusterHasBeenSet() const { return m_clusterHasBeenSet; } /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline void SetCluster(const Aws::String& value) { m_clusterHasBeenSet = true; m_cluster = value; } /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline void SetCluster(Aws::String&& value) { m_clusterHasBeenSet = true; m_cluster = std::move(value); } /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline void SetCluster(const char* value) { m_clusterHasBeenSet = true; m_cluster.assign(value); } /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline ListContainerInstancesRequest& WithCluster(const Aws::String& value) { SetCluster(value); return *this;} /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline ListContainerInstancesRequest& WithCluster(Aws::String&& value) { SetCluster(std::move(value)); return *this;} /** *

The short name or full Amazon Resource Name (ARN) of the cluster that hosts * the container instances to list. If you do not specify a cluster, the default * cluster is assumed.

*/ inline ListContainerInstancesRequest& WithCluster(const char* value) { SetCluster(value); return *this;} /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline const Aws::String& GetFilter() const{ return m_filter; } /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline bool FilterHasBeenSet() const { return m_filterHasBeenSet; } /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline void SetFilter(const Aws::String& value) { m_filterHasBeenSet = true; m_filter = value; } /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline void SetFilter(Aws::String&& value) { m_filterHasBeenSet = true; m_filter = std::move(value); } /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline void SetFilter(const char* value) { m_filterHasBeenSet = true; m_filter.assign(value); } /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline ListContainerInstancesRequest& WithFilter(const Aws::String& value) { SetFilter(value); return *this;} /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline ListContainerInstancesRequest& WithFilter(Aws::String&& value) { SetFilter(std::move(value)); return *this;} /** *

You can filter the results of a ListContainerInstances operation * with cluster query language statements. For more information, see Cluster * Query Language in the Amazon Elastic Container Service Developer * Guide.

*/ inline ListContainerInstancesRequest& WithFilter(const char* value) { SetFilter(value); return *this;} /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline ListContainerInstancesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline ListContainerInstancesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The nextToken value returned from a * ListContainerInstances request indicating that more results are * available to fulfill the request and further calls are needed. If * maxResults was provided, it's possible the number of results to be * fewer than maxResults.

This token should be treated * as an opaque identifier that is only used to retrieve the next items in a list * and not for other programmatic purposes.

*/ inline ListContainerInstancesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of container instance results that * ListContainerInstances returned in paginated output. When this * parameter is used, ListContainerInstances only returns * maxResults results in a single page along with a * nextToken response element. The remaining results of the initial * request can be seen by sending another ListContainerInstances * request with the returned nextToken value. This value can be * between 1 and 100. If this parameter isn't used, then * ListContainerInstances returns up to 100 results and a * nextToken value if applicable.

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of container instance results that * ListContainerInstances returned in paginated output. When this * parameter is used, ListContainerInstances only returns * maxResults results in a single page along with a * nextToken response element. The remaining results of the initial * request can be seen by sending another ListContainerInstances * request with the returned nextToken value. This value can be * between 1 and 100. If this parameter isn't used, then * ListContainerInstances returns up to 100 results and a * nextToken value if applicable.

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of container instance results that * ListContainerInstances returned in paginated output. When this * parameter is used, ListContainerInstances only returns * maxResults results in a single page along with a * nextToken response element. The remaining results of the initial * request can be seen by sending another ListContainerInstances * request with the returned nextToken value. This value can be * between 1 and 100. If this parameter isn't used, then * ListContainerInstances returns up to 100 results and a * nextToken value if applicable.

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of container instance results that * ListContainerInstances returned in paginated output. When this * parameter is used, ListContainerInstances only returns * maxResults results in a single page along with a * nextToken response element. The remaining results of the initial * request can be seen by sending another ListContainerInstances * request with the returned nextToken value. This value can be * between 1 and 100. If this parameter isn't used, then * ListContainerInstances returns up to 100 results and a * nextToken value if applicable.

*/ inline ListContainerInstancesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline const ContainerInstanceStatus& GetStatus() const{ return m_status; } /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline void SetStatus(const ContainerInstanceStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline void SetStatus(ContainerInstanceStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline ListContainerInstancesRequest& WithStatus(const ContainerInstanceStatus& value) { SetStatus(value); return *this;} /** *

Filters the container instances by status. For example, if you specify the * DRAINING status, the results include only container instances that * have been set to DRAINING using * UpdateContainerInstancesState. If you don't specify this parameter, the * default is to include container instances set to all states other than * INACTIVE.

*/ inline ListContainerInstancesRequest& WithStatus(ContainerInstanceStatus&& value) { SetStatus(std::move(value)); return *this;} private: Aws::String m_cluster; bool m_clusterHasBeenSet = false; Aws::String m_filter; bool m_filterHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; ContainerInstanceStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace ECS } // namespace Aws