amazonka-wafv2-2.0: Amazon WAFV2 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.WAFV2.ListMobileSdkReleases

Description

Retrieves a list of the available releases for the mobile SDK and the specified device platform.

The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see WAF client application integration in the WAF Developer Guide.

Synopsis

Creating a Request

data ListMobileSdkReleases Source #

See: newListMobileSdkReleases smart constructor.

Constructors

ListMobileSdkReleases' 

Fields

  • limit :: Maybe Natural

    The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

  • nextMarker :: Maybe Text

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

  • platform :: Platform

    The device platform to retrieve the list for.

Instances

Instances details
ToJSON ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

ToHeaders ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

ToPath ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

ToQuery ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

AWSRequest ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Associated Types

type AWSResponse ListMobileSdkReleases #

Generic ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Associated Types

type Rep ListMobileSdkReleases :: Type -> Type #

Read ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Show ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

NFData ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Methods

rnf :: ListMobileSdkReleases -> () #

Eq ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Hashable ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

type AWSResponse ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

type Rep ListMobileSdkReleases Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

type Rep ListMobileSdkReleases = D1 ('MetaData "ListMobileSdkReleases" "Amazonka.WAFV2.ListMobileSdkReleases" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "ListMobileSdkReleases'" 'PrefixI 'True) (S1 ('MetaSel ('Just "limit") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "platform") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Platform))))

newListMobileSdkReleases Source #

Create a value of ListMobileSdkReleases 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:

ListMobileSdkReleases, listMobileSdkReleases_limit - The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

ListMobileSdkReleases, listMobileSdkReleases_nextMarker - When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

$sel:platform:ListMobileSdkReleases', listMobileSdkReleases_platform - The device platform to retrieve the list for.

Request Lenses

listMobileSdkReleases_limit :: Lens' ListMobileSdkReleases (Maybe Natural) Source #

The maximum number of objects that you want WAF to return for this request. If more objects are available, in the response, WAF provides a NextMarker value that you can use in a subsequent call to get the next batch of objects.

listMobileSdkReleases_nextMarker :: Lens' ListMobileSdkReleases (Maybe Text) Source #

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

listMobileSdkReleases_platform :: Lens' ListMobileSdkReleases Platform Source #

The device platform to retrieve the list for.

Destructuring the Response

data ListMobileSdkReleasesResponse Source #

See: newListMobileSdkReleasesResponse smart constructor.

Constructors

ListMobileSdkReleasesResponse' 

Fields

  • nextMarker :: Maybe Text

    When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

  • releaseSummaries :: Maybe [ReleaseSummary]

    High level information for the available SDK releases.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Associated Types

type Rep ListMobileSdkReleasesResponse :: Type -> Type #

Read ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Show ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

NFData ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

Eq ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

type Rep ListMobileSdkReleasesResponse Source # 
Instance details

Defined in Amazonka.WAFV2.ListMobileSdkReleases

type Rep ListMobileSdkReleasesResponse = D1 ('MetaData "ListMobileSdkReleasesResponse" "Amazonka.WAFV2.ListMobileSdkReleases" "amazonka-wafv2-2.0-3v3WgpYn7RT5hSd6MsT5dN" 'False) (C1 ('MetaCons "ListMobileSdkReleasesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextMarker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "releaseSummaries") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ReleaseSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListMobileSdkReleasesResponse Source #

Create a value of ListMobileSdkReleasesResponse 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:

ListMobileSdkReleases, listMobileSdkReleasesResponse_nextMarker - When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.

$sel:releaseSummaries:ListMobileSdkReleasesResponse', listMobileSdkReleasesResponse_releaseSummaries - High level information for the available SDK releases.

$sel:httpStatus:ListMobileSdkReleasesResponse', listMobileSdkReleasesResponse_httpStatus - The response's http status code.

Response Lenses

listMobileSdkReleasesResponse_nextMarker :: Lens' ListMobileSdkReleasesResponse (Maybe Text) Source #

When you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request.