libZSservicesZSamazonka-ecsZSamazonka-ecs
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.ECS.ListContainerInstances

Description

Returns a list of container instances in a specified cluster. You can filter the results of a ListContainerInstances operation with cluster query language statements inside the filter parameter. For more information, see Cluster Query Language in the Amazon Elastic Container Service Developer Guide.

This operation returns paginated results.

Synopsis

Creating a Request

data ListContainerInstances Source #

See: newListContainerInstances smart constructor.

Constructors

ListContainerInstances' 

Fields

  • status :: Maybe ContainerInstanceStatus

    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 do not specify this parameter, the default is to include container instances set to all states other than INACTIVE.

  • cluster :: Maybe Text

    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.

  • nextToken :: Maybe Text

    The nextToken value returned from a ListContainerInstances request indicating that more results are available to fulfill the request and further calls will be needed. If maxResults was provided, it is 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.

  • filter' :: Maybe Text

    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.

  • maxResults :: Maybe Int

    The maximum number of container instance results returned by ListContainerInstances 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 is not used, then ListContainerInstances returns up to 100 results and a nextToken value if applicable.

Instances

Instances details
Eq ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Read ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Show ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Generic ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Associated Types

type Rep ListContainerInstances :: Type -> Type #

NFData ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Methods

rnf :: ListContainerInstances -> () #

Hashable ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

ToJSON ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

AWSPager ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

AWSRequest ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Associated Types

type AWSResponse ListContainerInstances #

ToHeaders ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

ToPath ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

ToQuery ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

type Rep ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

type Rep ListContainerInstances = D1 ('MetaData "ListContainerInstances" "Amazonka.ECS.ListContainerInstances" "libZSservicesZSamazonka-ecsZSamazonka-ecs" 'False) (C1 ('MetaCons "ListContainerInstances'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ContainerInstanceStatus)) :*: S1 ('MetaSel ('Just "cluster") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "filter'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))))
type AWSResponse ListContainerInstances Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

newListContainerInstances :: ListContainerInstances Source #

Create a value of ListContainerInstances with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:status:ListContainerInstances', listContainerInstances_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 do not specify this parameter, the default is to include container instances set to all states other than INACTIVE.

$sel:cluster:ListContainerInstances', listContainerInstances_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.

$sel:nextToken:ListContainerInstances', listContainerInstances_nextToken - The nextToken value returned from a ListContainerInstances request indicating that more results are available to fulfill the request and further calls will be needed. If maxResults was provided, it is 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.

$sel:filter':ListContainerInstances', listContainerInstances_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.

$sel:maxResults:ListContainerInstances', listContainerInstances_maxResults - The maximum number of container instance results returned by ListContainerInstances 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 is not used, then ListContainerInstances returns up to 100 results and a nextToken value if applicable.

Request Lenses

listContainerInstances_status :: Lens' ListContainerInstances (Maybe ContainerInstanceStatus) Source #

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 do not specify this parameter, the default is to include container instances set to all states other than INACTIVE.

listContainerInstances_cluster :: Lens' ListContainerInstances (Maybe Text) Source #

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.

listContainerInstances_nextToken :: Lens' ListContainerInstances (Maybe Text) Source #

The nextToken value returned from a ListContainerInstances request indicating that more results are available to fulfill the request and further calls will be needed. If maxResults was provided, it is 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.

listContainerInstances_filter :: Lens' ListContainerInstances (Maybe Text) Source #

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.

listContainerInstances_maxResults :: Lens' ListContainerInstances (Maybe Int) Source #

The maximum number of container instance results returned by ListContainerInstances 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 is not used, then ListContainerInstances returns up to 100 results and a nextToken value if applicable.

Destructuring the Response

data ListContainerInstancesResponse Source #

See: newListContainerInstancesResponse smart constructor.

Constructors

ListContainerInstancesResponse' 

Fields

  • containerInstanceArns :: Maybe [Text]

    The list of container instances with full ARN entries for each container instance associated with the specified cluster.

  • nextToken :: Maybe Text

    The nextToken value to include in a future ListContainerInstances request. When the results of a ListContainerInstances request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Read ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Show ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Generic ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

Associated Types

type Rep ListContainerInstancesResponse :: Type -> Type #

NFData ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

type Rep ListContainerInstancesResponse Source # 
Instance details

Defined in Amazonka.ECS.ListContainerInstances

type Rep ListContainerInstancesResponse = D1 ('MetaData "ListContainerInstancesResponse" "Amazonka.ECS.ListContainerInstances" "libZSservicesZSamazonka-ecsZSamazonka-ecs" 'False) (C1 ('MetaCons "ListContainerInstancesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "containerInstanceArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListContainerInstancesResponse Source #

Create a value of ListContainerInstancesResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:containerInstanceArns:ListContainerInstancesResponse', listContainerInstancesResponse_containerInstanceArns - The list of container instances with full ARN entries for each container instance associated with the specified cluster.

$sel:nextToken:ListContainerInstances', listContainerInstancesResponse_nextToken - The nextToken value to include in a future ListContainerInstances request. When the results of a ListContainerInstances request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

$sel:httpStatus:ListContainerInstancesResponse', listContainerInstancesResponse_httpStatus - The response's http status code.

Response Lenses

listContainerInstancesResponse_containerInstanceArns :: Lens' ListContainerInstancesResponse (Maybe [Text]) Source #

The list of container instances with full ARN entries for each container instance associated with the specified cluster.

listContainerInstancesResponse_nextToken :: Lens' ListContainerInstancesResponse (Maybe Text) Source #

The nextToken value to include in a future ListContainerInstances request. When the results of a ListContainerInstances request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.