Skip to main content

mobile_sdk_releases

Creates, updates, deletes, gets or lists a mobile_sdk_releases resource.

Overview

Namemobile_sdk_releases
TypeResource
Idaws.wafv2.mobile_sdk_releases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
release_notesstringNotes describing the release.
release_versionstringThe release version. (pattern: <code>^[\w#:.-/]+$</code>)
tagsarrayTags that are associated with the release.
timestampstring (date-time)The timestamp of the release.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_mobile_sdk_releaseselectregionRetrieves information for the specified mobile SDK release, including release notes and tags. 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.
list_mobile_sdk_releasesselectregionRetrieves 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.
generate_mobile_sdk_release_urlexecregion, Platform, ReleaseVersionGenerates a presigned download URL for the specified release of the mobile SDK. 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves information for the specified mobile SDK release, including release notes and tags. 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.

SELECT
release_notes,
release_version,
tags,
timestamp
FROM aws.wafv2.mobile_sdk_releases
WHERE region = '{{ region }}' -- required
;

Lifecycle Methods

Generates a presigned download URL for the specified release of the mobile SDK. 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.

EXEC aws.wafv2.mobile_sdk_releases.generate_mobile_sdk_release_url
@region='{{ region }}' --required
@@json=
'{
"Platform": "{{ Platform }}",
"ReleaseVersion": "{{ ReleaseVersion }}"
}'
;