amazonka-dynamodb-2.0: Amazon DynamoDB SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DynamoDB.ListContributorInsights

Description

Returns a list of ContributorInsightsSummary for a table and all its global secondary indexes.

Synopsis

Creating a Request

data ListContributorInsights Source #

See: newListContributorInsights smart constructor.

Constructors

ListContributorInsights' 

Fields

Instances

Instances details
ToJSON ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

ToHeaders ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

ToPath ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

ToQuery ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

AWSRequest ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Generic ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Associated Types

type Rep ListContributorInsights :: Type -> Type #

Read ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Show ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

NFData ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Methods

rnf :: ListContributorInsights -> () #

Eq ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Hashable ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

type AWSResponse ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

type Rep ListContributorInsights Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

type Rep ListContributorInsights = D1 ('MetaData "ListContributorInsights" "Amazonka.DynamoDB.ListContributorInsights" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "ListContributorInsights'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newListContributorInsights :: ListContributorInsights Source #

Create a value of ListContributorInsights 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:maxResults:ListContributorInsights', listContributorInsights_maxResults - Maximum number of results to return per page.

ListContributorInsights, listContributorInsights_nextToken - A token to for the desired page, if there is one.

ListContributorInsights, listContributorInsights_tableName - The name of the table.

Request Lenses

listContributorInsights_maxResults :: Lens' ListContributorInsights (Maybe Int) Source #

Maximum number of results to return per page.

listContributorInsights_nextToken :: Lens' ListContributorInsights (Maybe Text) Source #

A token to for the desired page, if there is one.

Destructuring the Response

data ListContributorInsightsResponse Source #

See: newListContributorInsightsResponse smart constructor.

Constructors

ListContributorInsightsResponse' 

Fields

Instances

Instances details
Generic ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Associated Types

type Rep ListContributorInsightsResponse :: Type -> Type #

Read ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Show ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

NFData ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

Eq ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

type Rep ListContributorInsightsResponse Source # 
Instance details

Defined in Amazonka.DynamoDB.ListContributorInsights

type Rep ListContributorInsightsResponse = D1 ('MetaData "ListContributorInsightsResponse" "Amazonka.DynamoDB.ListContributorInsights" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "ListContributorInsightsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "contributorInsightsSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ContributorInsightsSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListContributorInsightsResponse Source #

Create a value of ListContributorInsightsResponse 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:contributorInsightsSummaries:ListContributorInsightsResponse', listContributorInsightsResponse_contributorInsightsSummaries - A list of ContributorInsightsSummary.

ListContributorInsights, listContributorInsightsResponse_nextToken - A token to go to the next page if there is one.

$sel:httpStatus:ListContributorInsightsResponse', listContributorInsightsResponse_httpStatus - The response's http status code.

Response Lenses