Container for AWS SDK SQS operations

1.0.0 2023-08-01 14:48 UTC

This package is auto-updated.

Last update: 2024-05-09 11:45:31 UTC


README

Container for AWS SDK SQS operations

Install package

composer req valantic-spryker-eco/aws-sqs

Update your shared config

$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_REGION] = 'us-east-1';
$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_VERSION] = 'latest';
$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_ENDPOINT] = 'http://elasticmq:9324';

Username and password, if required

$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_API_KEY] = 'key';
$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_API_SECRET] = 'secret';

Or, if your are using AWS IAM roles

$config[AwsSqsConstants::AWS_SQS_CONFIG_PARAM_USE_IAM] = true;