You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/sns/SnsConnectionFactory.php
+5-2
Original file line number
Diff line number
Diff line change
@@ -24,13 +24,14 @@ class SnsConnectionFactory implements ConnectionFactory
24
24
25
25
/**
26
26
* $config = [
27
-
* 'key' => null AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
27
+
* 'key' => null, AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
28
28
* 'secret' => null, AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
29
29
* 'token' => null, AWS credentials. If no credentials are provided, the SDK will attempt to load them from the environment.
30
30
* 'region' => null, (string, required) Region to connect to. See http://docs.aws.amazon.com/general/latest/gr/rande.html for a list of available regions.
31
31
* 'version' => '2012-11-05', (string, required) The version of the webservice to utilize
* 'endpoint' => null (string, default=null) The full URI of the webservice. This is only required when connecting to a custom endpoint e.g. localstack
33
+
* 'endpoint' => null, (string, default=null) The full URI of the webservice. This is only required when connecting to a custom endpoint e.g. localstack
34
+
* 'topic_arns' => [], (array<string,string>) The list of existing topic arns: key - topic name; value - arn
34
35
* ].
35
36
*
36
37
* or
@@ -132,6 +133,7 @@ private function parseDsn(string $dsn): array
0 commit comments