ExAwsConfigurator (ExAwsConfigurator v1.4.1) View Source

Documentation for ExAwsConfigurator.

Link to this section Summary

Functions

Fetch queue configurations specific to the :ex_aws_configurator application.

Fetch topic configurations specific to the :ex_aws_configurator application.

Create all topics, create all queue and all subscrition present into configuration

Create all topics, create all queue and all subscrition present into configuration, can raise an exception in case of error.

Link to this section Functions

Specs

get_queue(atom()) :: ExAwsConfigurator.Queue.t()

Fetch queue configurations specific to the :ex_aws_configurator application.

raises ExAwsConfigurator.NoResultsError if no configuration was found.

Example

ExAwsConfigurator.get_queue(:queue_name)
#=> %Queue{region: us-east-1, ...}

ExAwsConfigurator.get_queue(:not_exist)
#=> ** (ExAwsConfigurator.NoResultsError) the configuration for queue not_exist is not set

Specs

get_topic(atom()) :: any() | no_return()

Fetch topic configurations specific to the :ex_aws_configurator application.

raises ExAwsConfigurator.NoResultsError if no configuration was found.

Example

ExAwsConfigurator.get_topic(queue_name)
#=> %Topic{region: us-east-1, ...}

ExAwsConfigurator.get_topic(:not_exist)
#=> ** (ExAwsConfigurator.NoResultsError) the configuration for topic not_exist is not set

Create all topics, create all queue and all subscrition present into configuration

We recommended that use this only if you change some configuration, however you can add this method to trigger by CI ever deploy

Specs

setup!() :: :ok | no_return()

Create all topics, create all queue and all subscrition present into configuration, can raise an exception in case of error.

We recommended that use this only if you change some configuration, however you can add this method to trigger by CI ever deploy