libZSservicesZSamazonka-kafkaZSamazonka-kafka
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.Kafka.ListClusterOperations

Description

Returns a list of all the operations that have been performed on the specified MSK cluster.

This operation returns paginated results.

Synopsis

Creating a Request

data ListClusterOperations Source #

See: newListClusterOperations smart constructor.

Constructors

ListClusterOperations' 

Fields

  • nextToken :: Maybe Text

    The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

  • maxResults :: Maybe Natural

    The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.

  • clusterArn :: Text

    The Amazon Resource Name (ARN) that uniquely identifies the cluster.

Instances

Instances details
Eq ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Read ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Show ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Generic ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Associated Types

type Rep ListClusterOperations :: Type -> Type #

NFData ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Methods

rnf :: ListClusterOperations -> () #

Hashable ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

AWSPager ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

AWSRequest ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Associated Types

type AWSResponse ListClusterOperations #

ToHeaders ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

ToPath ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

ToQuery ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

type Rep ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

type Rep ListClusterOperations = D1 ('MetaData "ListClusterOperations" "Amazonka.Kafka.ListClusterOperations" "libZSservicesZSamazonka-kafkaZSamazonka-kafka" 'False) (C1 ('MetaCons "ListClusterOperations'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "clusterArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListClusterOperations Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

newListClusterOperations Source #

Create a value of ListClusterOperations 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:nextToken:ListClusterOperations', listClusterOperations_nextToken - The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

$sel:maxResults:ListClusterOperations', listClusterOperations_maxResults - The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.

$sel:clusterArn:ListClusterOperations', listClusterOperations_clusterArn - The Amazon Resource Name (ARN) that uniquely identifies the cluster.

Request Lenses

listClusterOperations_nextToken :: Lens' ListClusterOperations (Maybe Text) Source #

The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

listClusterOperations_maxResults :: Lens' ListClusterOperations (Maybe Natural) Source #

The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.

listClusterOperations_clusterArn :: Lens' ListClusterOperations Text Source #

The Amazon Resource Name (ARN) that uniquely identifies the cluster.

Destructuring the Response

data ListClusterOperationsResponse Source #

See: newListClusterOperationsResponse smart constructor.

Constructors

ListClusterOperationsResponse' 

Fields

Instances

Instances details
Eq ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Read ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Show ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Generic ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

Associated Types

type Rep ListClusterOperationsResponse :: Type -> Type #

NFData ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

type Rep ListClusterOperationsResponse Source # 
Instance details

Defined in Amazonka.Kafka.ListClusterOperations

type Rep ListClusterOperationsResponse = D1 ('MetaData "ListClusterOperationsResponse" "Amazonka.Kafka.ListClusterOperations" "libZSservicesZSamazonka-kafkaZSamazonka-kafka" 'False) (C1 ('MetaCons "ListClusterOperationsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "clusterOperationInfoList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ClusterOperationInfo])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListClusterOperationsResponse Source #

Create a value of ListClusterOperationsResponse 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:clusterOperationInfoList:ListClusterOperationsResponse', listClusterOperationsResponse_clusterOperationInfoList - An array of cluster operation information objects.

$sel:nextToken:ListClusterOperations', listClusterOperationsResponse_nextToken - If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.

$sel:httpStatus:ListClusterOperationsResponse', listClusterOperationsResponse_httpStatus - The response's http status code.

Response Lenses

listClusterOperationsResponse_nextToken :: Lens' ListClusterOperationsResponse (Maybe Text) Source #

If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.