Skip to main content

network_settings

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

Overview

Namenetwork_settings
TypeResource
Idaws.wickr.network_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
settingsarrayA list of network settings, where each setting includes a name, value, and type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_network_settingsselectnetwork_id, regionRetrieves all network-level settings for a Wickr network, including client metrics, data retention, and other configuration options.
update_network_settingsupdatenetwork_id, region, settingsUpdates network-level settings for a Wickr network. You can modify settings such as client metrics, data retention, and other network-wide options.

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
network_idstringThe ID of the Wickr network whose settings will be updated.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves all network-level settings for a Wickr network, including client metrics, data retention, and other configuration options.

SELECT
settings
FROM aws.wickr.network_settings
WHERE network_id = '{{ network_id }}' -- required
AND region = '{{ region }}' -- required
;

UPDATE examples

Updates network-level settings for a Wickr network. You can modify settings such as client metrics, data retention, and other network-wide options.

UPDATE aws.wickr.network_settings
SET
settings = '{{ settings }}'
WHERE
network_id = '{{ network_id }}' --required
AND region = '{{ region }}' --required
AND settings = '{{ settings }}' --required
RETURNING
settings;