commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
SnsDestination.php
1<?php
2
3declare(strict_types=1);
10
13
14interface SnsDestination extends Destination
15{
16 public const FIELD_ACCESS_KEY = 'accessKey';
17 public const FIELD_ACCESS_SECRET = 'accessSecret';
18 public const FIELD_TOPIC_ARN = 'topicArn';
19 public const FIELD_AUTHENTICATION_MODE = 'authenticationMode';
20
27 public function getAccessKey();
28
35 public function getAccessSecret();
36
43 public function getTopicArn();
44
51 public function getAuthenticationMode();
52
56 public function setAccessKey(?string $accessKey): void;
57
61 public function setAccessSecret(?string $accessSecret): void;
62
66 public function setTopicArn(?string $topicArn): void;
67
71 public function setAuthenticationMode(?string $authenticationMode): void;
72}
setAuthenticationMode(?string $authenticationMode)