mobile_sdk_releases
Creates, updates, deletes, gets or lists a mobile_sdk_releases resource.
Overview
| Name | mobile_sdk_releases |
| Type | Resource |
| Id | aws.wafv2.mobile_sdk_releases |
Fields
The following fields are returned by SELECT queries:
- get_mobile_sdk_release
- list_mobile_sdk_releases
| Name | Datatype | Description |
|---|---|---|
release_notes | string | Notes describing the release. |
release_version | string | The release version. (pattern: <code>^[\w#:.-/]+$</code>) |
tags | array | Tags that are associated with the release. |
timestamp | string (date-time) | The timestamp of the release. |
| Name | Datatype | Description |
|---|---|---|
next_marker | string | 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. (pattern: <code>.\S.</code>) |
release_summaries | array | The high level information for the available SDK releases. If you specified a Limit in your request, this might not be the full list. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_mobile_sdk_release | select | region | 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. | |
list_mobile_sdk_releases | select | region | 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. | |
generate_mobile_sdk_release_url | exec | region, Platform, ReleaseVersion | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_mobile_sdk_release
- list_mobile_sdk_releases
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
;
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.
SELECT
next_marker,
release_summaries
FROM aws.wafv2.mobile_sdk_releases
WHERE region = '{{ region }}' -- required
;
Lifecycle Methods
- generate_mobile_sdk_release_url
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 }}"
}'
;