$this->currentResponse = null;
return true;
} public function setup(): void
{ // Set to false to disable setup more than once
$this->configuration
['auto_setup'
] = false;
if ($this->client->
queueExists([ 'QueueName' =>
$this->configuration
['queue_name'
],
'QueueOwnerAWSAccountId' =>
$this->configuration
['account'
],
])->
isSuccess()) { return;
} if (null !==
$this->configuration
['account'
]) { throw new InvalidArgumentException(sprintf('The Amazon SQS queue "%s" does not exist (or you don\'t have permissions on it), and can\'t be created when an account is provided.',
$this->configuration
['queue_name'
]));
} $parameters =
['QueueName' =>
$this->configuration
['queue_name'
]];