No Description

AWSSNSModel.h 46KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051
  1. //
  2. // Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. //
  4. // Licensed under the Apache License, Version 2.0 (the "License").
  5. // You may not use this file except in compliance with the License.
  6. // A copy of the License is located at
  7. //
  8. // http://aws.amazon.com/apache2.0
  9. //
  10. // or in the "license" file accompanying this file. This file is distributed
  11. // on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  12. // express or implied. See the License for the specific language governing
  13. // permissions and limitations under the License.
  14. //
  15. #import <Foundation/Foundation.h>
  16. #import <AWSCore/AWSNetworking.h>
  17. #import <AWSCore/AWSModel.h>
  18. NS_ASSUME_NONNULL_BEGIN
  19. FOUNDATION_EXPORT NSString *const AWSSNSErrorDomain;
  20. typedef NS_ENUM(NSInteger, AWSSNSErrorType) {
  21. AWSSNSErrorUnknown,
  22. AWSSNSErrorAuthorizationError,
  23. AWSSNSErrorEndpointDisabled,
  24. AWSSNSErrorFilterPolicyLimitExceeded,
  25. AWSSNSErrorInternalError,
  26. AWSSNSErrorInvalidParameter,
  27. AWSSNSErrorInvalidParameterValue,
  28. AWSSNSErrorInvalidSecurity,
  29. AWSSNSErrorKMSAccessDenied,
  30. AWSSNSErrorKMSDisabled,
  31. AWSSNSErrorKMSInvalidState,
  32. AWSSNSErrorKMSNotFound,
  33. AWSSNSErrorKMSOptInRequired,
  34. AWSSNSErrorKMSThrottling,
  35. AWSSNSErrorNotFound,
  36. AWSSNSErrorPlatformApplicationDisabled,
  37. AWSSNSErrorSubscriptionLimitExceeded,
  38. AWSSNSErrorThrottled,
  39. AWSSNSErrorTopicLimitExceeded,
  40. };
  41. @class AWSSNSAddPermissionInput;
  42. @class AWSSNSCheckIfPhoneNumberIsOptedOutInput;
  43. @class AWSSNSCheckIfPhoneNumberIsOptedOutResponse;
  44. @class AWSSNSConfirmSubscriptionInput;
  45. @class AWSSNSConfirmSubscriptionResponse;
  46. @class AWSSNSCreateEndpointResponse;
  47. @class AWSSNSCreatePlatformApplicationInput;
  48. @class AWSSNSCreatePlatformApplicationResponse;
  49. @class AWSSNSCreatePlatformEndpointInput;
  50. @class AWSSNSCreateTopicInput;
  51. @class AWSSNSCreateTopicResponse;
  52. @class AWSSNSDeleteEndpointInput;
  53. @class AWSSNSDeletePlatformApplicationInput;
  54. @class AWSSNSDeleteTopicInput;
  55. @class AWSSNSEndpoint;
  56. @class AWSSNSGetEndpointAttributesInput;
  57. @class AWSSNSGetEndpointAttributesResponse;
  58. @class AWSSNSGetPlatformApplicationAttributesInput;
  59. @class AWSSNSGetPlatformApplicationAttributesResponse;
  60. @class AWSSNSGetSMSAttributesInput;
  61. @class AWSSNSGetSMSAttributesResponse;
  62. @class AWSSNSGetSubscriptionAttributesInput;
  63. @class AWSSNSGetSubscriptionAttributesResponse;
  64. @class AWSSNSGetTopicAttributesInput;
  65. @class AWSSNSGetTopicAttributesResponse;
  66. @class AWSSNSListEndpointsByPlatformApplicationInput;
  67. @class AWSSNSListEndpointsByPlatformApplicationResponse;
  68. @class AWSSNSListPhoneNumbersOptedOutInput;
  69. @class AWSSNSListPhoneNumbersOptedOutResponse;
  70. @class AWSSNSListPlatformApplicationsInput;
  71. @class AWSSNSListPlatformApplicationsResponse;
  72. @class AWSSNSListSubscriptionsByTopicInput;
  73. @class AWSSNSListSubscriptionsByTopicResponse;
  74. @class AWSSNSListSubscriptionsInput;
  75. @class AWSSNSListSubscriptionsResponse;
  76. @class AWSSNSListTopicsInput;
  77. @class AWSSNSListTopicsResponse;
  78. @class AWSSNSMessageAttributeValue;
  79. @class AWSSNSOptInPhoneNumberInput;
  80. @class AWSSNSOptInPhoneNumberResponse;
  81. @class AWSSNSPlatformApplication;
  82. @class AWSSNSPublishInput;
  83. @class AWSSNSPublishResponse;
  84. @class AWSSNSRemovePermissionInput;
  85. @class AWSSNSSetEndpointAttributesInput;
  86. @class AWSSNSSetPlatformApplicationAttributesInput;
  87. @class AWSSNSSetSMSAttributesInput;
  88. @class AWSSNSSetSMSAttributesResponse;
  89. @class AWSSNSSetSubscriptionAttributesInput;
  90. @class AWSSNSSetTopicAttributesInput;
  91. @class AWSSNSSubscribeInput;
  92. @class AWSSNSSubscribeResponse;
  93. @class AWSSNSSubscription;
  94. @class AWSSNSTopic;
  95. @class AWSSNSUnsubscribeInput;
  96. /**
  97. */
  98. @interface AWSSNSAddPermissionInput : AWSRequest
  99. /**
  100. <p>The AWS account IDs of the users (principals) who will be given access to the specified actions. The users must have AWS accounts, but do not need to be signed up for this service.</p>
  101. */
  102. @property (nonatomic, strong) NSArray<NSString *> * _Nullable AWSAccountId;
  103. /**
  104. <p>The action you want to allow for the specified principal(s).</p><p>Valid values: any Amazon SNS action name.</p>
  105. */
  106. @property (nonatomic, strong) NSArray<NSString *> * _Nullable actionName;
  107. /**
  108. <p>A unique identifier for the new policy statement.</p>
  109. */
  110. @property (nonatomic, strong) NSString * _Nullable label;
  111. /**
  112. <p>The ARN of the topic whose access control policy you wish to modify.</p>
  113. */
  114. @property (nonatomic, strong) NSString * _Nullable topicArn;
  115. @end
  116. /**
  117. <p>The input for the <code>CheckIfPhoneNumberIsOptedOut</code> action.</p>
  118. Required parameters: [phoneNumber]
  119. */
  120. @interface AWSSNSCheckIfPhoneNumberIsOptedOutInput : AWSRequest
  121. /**
  122. <p>The phone number for which you want to check the opt out status.</p>
  123. */
  124. @property (nonatomic, strong) NSString * _Nullable phoneNumber;
  125. @end
  126. /**
  127. <p>The response from the <code>CheckIfPhoneNumberIsOptedOut</code> action.</p>
  128. */
  129. @interface AWSSNSCheckIfPhoneNumberIsOptedOutResponse : AWSModel
  130. /**
  131. <p>Indicates whether the phone number is opted out:</p><ul><li><p><code>true</code> – The phone number is opted out, meaning you cannot publish SMS messages to it.</p></li><li><p><code>false</code> – The phone number is opted in, meaning you can publish SMS messages to it.</p></li></ul>
  132. */
  133. @property (nonatomic, strong) NSNumber * _Nullable isOptedOut;
  134. @end
  135. /**
  136. <p>Input for ConfirmSubscription action.</p>
  137. Required parameters: [TopicArn, Token]
  138. */
  139. @interface AWSSNSConfirmSubscriptionInput : AWSRequest
  140. /**
  141. <p>Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is <code>true</code> and the request has an AWS signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires AWS authentication. </p>
  142. */
  143. @property (nonatomic, strong) NSString * _Nullable authenticateOnUnsubscribe;
  144. /**
  145. <p>Short-lived token sent to an endpoint during the <code>Subscribe</code> action.</p>
  146. */
  147. @property (nonatomic, strong) NSString * _Nullable token;
  148. /**
  149. <p>The ARN of the topic for which you wish to confirm a subscription.</p>
  150. */
  151. @property (nonatomic, strong) NSString * _Nullable topicArn;
  152. @end
  153. /**
  154. <p>Response for ConfirmSubscriptions action.</p>
  155. */
  156. @interface AWSSNSConfirmSubscriptionResponse : AWSModel
  157. /**
  158. <p>The ARN of the created subscription.</p>
  159. */
  160. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  161. @end
  162. /**
  163. <p>Response from CreateEndpoint action.</p>
  164. */
  165. @interface AWSSNSCreateEndpointResponse : AWSModel
  166. /**
  167. <p>EndpointArn returned from CreateEndpoint action.</p>
  168. */
  169. @property (nonatomic, strong) NSString * _Nullable endpointArn;
  170. @end
  171. /**
  172. <p>Input for CreatePlatformApplication action.</p>
  173. Required parameters: [Name, Platform, Attributes]
  174. */
  175. @interface AWSSNSCreatePlatformApplicationInput : AWSRequest
  176. /**
  177. <p>For a list of attributes, see <a href="http://docs.aws.amazon.com/sns/latest/api/API_SetPlatformApplicationAttributes.html">SetPlatformApplicationAttributes</a></p>
  178. */
  179. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  180. /**
  181. <p>Application names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, hyphens, and periods, and must be between 1 and 256 characters long.</p>
  182. */
  183. @property (nonatomic, strong) NSString * _Nullable name;
  184. /**
  185. <p>The following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS_SANDBOX, and GCM (Google Cloud Messaging).</p>
  186. */
  187. @property (nonatomic, strong) NSString * _Nullable platform;
  188. @end
  189. /**
  190. <p>Response from CreatePlatformApplication action.</p>
  191. */
  192. @interface AWSSNSCreatePlatformApplicationResponse : AWSModel
  193. /**
  194. <p>PlatformApplicationArn is returned.</p>
  195. */
  196. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  197. @end
  198. /**
  199. <p>Input for CreatePlatformEndpoint action.</p>
  200. Required parameters: [PlatformApplicationArn, Token]
  201. */
  202. @interface AWSSNSCreatePlatformEndpointInput : AWSRequest
  203. /**
  204. <p>For a list of attributes, see <a href="http://docs.aws.amazon.com/sns/latest/api/API_SetEndpointAttributes.html">SetEndpointAttributes</a>.</p>
  205. */
  206. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  207. /**
  208. <p>Arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</p>
  209. */
  210. @property (nonatomic, strong) NSString * _Nullable customUserData;
  211. /**
  212. <p>PlatformApplicationArn returned from CreatePlatformApplication is used to create a an endpoint.</p>
  213. */
  214. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  215. /**
  216. <p>Unique identifier created by the notification service for an app on a device. The specific name for Token will vary, depending on which notification service is being used. For example, when using APNS as the notification service, you need the device token. Alternatively, when using GCM or ADM, the device token equivalent is called the registration ID.</p>
  217. */
  218. @property (nonatomic, strong) NSString * _Nullable token;
  219. @end
  220. /**
  221. <p>Input for CreateTopic action.</p>
  222. Required parameters: [Name]
  223. */
  224. @interface AWSSNSCreateTopicInput : AWSRequest
  225. /**
  226. <p>A map of attributes with their corresponding values.</p><p>The following lists the names, descriptions, and values of the special request parameters that the <code>CreateTopic</code> action uses:</p><ul><li><p><code>DeliveryPolicy</code> – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.</p></li><li><p><code>DisplayName</code> – The display name to use for a topic with SMS subscriptions.</p></li><li><p><code>Policy</code> – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.</p></li></ul>
  227. */
  228. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  229. /**
  230. <p>The name of the topic you want to create.</p><p>Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.</p>
  231. */
  232. @property (nonatomic, strong) NSString * _Nullable name;
  233. @end
  234. /**
  235. <p>Response from CreateTopic action.</p>
  236. */
  237. @interface AWSSNSCreateTopicResponse : AWSModel
  238. /**
  239. <p>The Amazon Resource Name (ARN) assigned to the created topic.</p>
  240. */
  241. @property (nonatomic, strong) NSString * _Nullable topicArn;
  242. @end
  243. /**
  244. <p>Input for DeleteEndpoint action.</p>
  245. Required parameters: [EndpointArn]
  246. */
  247. @interface AWSSNSDeleteEndpointInput : AWSRequest
  248. /**
  249. <p>EndpointArn of endpoint to delete.</p>
  250. */
  251. @property (nonatomic, strong) NSString * _Nullable endpointArn;
  252. @end
  253. /**
  254. <p>Input for DeletePlatformApplication action.</p>
  255. Required parameters: [PlatformApplicationArn]
  256. */
  257. @interface AWSSNSDeletePlatformApplicationInput : AWSRequest
  258. /**
  259. <p>PlatformApplicationArn of platform application object to delete.</p>
  260. */
  261. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  262. @end
  263. /**
  264. */
  265. @interface AWSSNSDeleteTopicInput : AWSRequest
  266. /**
  267. <p>The ARN of the topic you want to delete.</p>
  268. */
  269. @property (nonatomic, strong) NSString * _Nullable topicArn;
  270. @end
  271. /**
  272. <p>Endpoint for mobile app and device.</p>
  273. */
  274. @interface AWSSNSEndpoint : AWSModel
  275. /**
  276. <p>Attributes for endpoint.</p>
  277. */
  278. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  279. /**
  280. <p>EndpointArn for mobile app and device.</p>
  281. */
  282. @property (nonatomic, strong) NSString * _Nullable endpointArn;
  283. @end
  284. /**
  285. <p>Input for GetEndpointAttributes action.</p>
  286. Required parameters: [EndpointArn]
  287. */
  288. @interface AWSSNSGetEndpointAttributesInput : AWSRequest
  289. /**
  290. <p>EndpointArn for GetEndpointAttributes input.</p>
  291. */
  292. @property (nonatomic, strong) NSString * _Nullable endpointArn;
  293. @end
  294. /**
  295. <p>Response from GetEndpointAttributes of the EndpointArn.</p>
  296. */
  297. @interface AWSSNSGetEndpointAttributesResponse : AWSModel
  298. /**
  299. <p>Attributes include the following:</p><ul><li><p><code>CustomUserData</code> – arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</p></li><li><p><code>Enabled</code> – flag that enables/disables delivery to the endpoint. Amazon SNS will set this to false when a notification service indicates to Amazon SNS that the endpoint is invalid. Users can set it back to true, typically after updating Token.</p></li><li><p><code>Token</code> – device token, also referred to as a registration id, for an app and mobile device. This is returned from the notification service when an app and mobile device are registered with the notification service.</p></li></ul>
  300. */
  301. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  302. @end
  303. /**
  304. <p>Input for GetPlatformApplicationAttributes action.</p>
  305. Required parameters: [PlatformApplicationArn]
  306. */
  307. @interface AWSSNSGetPlatformApplicationAttributesInput : AWSRequest
  308. /**
  309. <p>PlatformApplicationArn for GetPlatformApplicationAttributesInput.</p>
  310. */
  311. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  312. @end
  313. /**
  314. <p>Response for GetPlatformApplicationAttributes action.</p>
  315. */
  316. @interface AWSSNSGetPlatformApplicationAttributesResponse : AWSModel
  317. /**
  318. <p>Attributes include the following:</p><ul><li><p><code>EventEndpointCreated</code> – Topic ARN to which EndpointCreated event notifications should be sent.</p></li><li><p><code>EventEndpointDeleted</code> – Topic ARN to which EndpointDeleted event notifications should be sent.</p></li><li><p><code>EventEndpointUpdated</code> – Topic ARN to which EndpointUpdate event notifications should be sent.</p></li><li><p><code>EventDeliveryFailure</code> – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.</p></li></ul>
  319. */
  320. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  321. @end
  322. /**
  323. <p>The input for the <code>GetSMSAttributes</code> request.</p>
  324. */
  325. @interface AWSSNSGetSMSAttributesInput : AWSRequest
  326. /**
  327. <p>A list of the individual attribute names, such as <code>MonthlySpendLimit</code>, for which you want values.</p><p>For all attribute names, see <a href="http://docs.aws.amazon.com/sns/latest/api/API_SetSMSAttributes.html">SetSMSAttributes</a>.</p><p>If you don't use this parameter, Amazon SNS returns all SMS attributes.</p>
  328. */
  329. @property (nonatomic, strong) NSArray<NSString *> * _Nullable attributes;
  330. @end
  331. /**
  332. <p>The response from the <code>GetSMSAttributes</code> request.</p>
  333. */
  334. @interface AWSSNSGetSMSAttributesResponse : AWSModel
  335. /**
  336. <p>The SMS attribute names and their values.</p>
  337. */
  338. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  339. @end
  340. /**
  341. <p>Input for GetSubscriptionAttributes.</p>
  342. Required parameters: [SubscriptionArn]
  343. */
  344. @interface AWSSNSGetSubscriptionAttributesInput : AWSRequest
  345. /**
  346. <p>The ARN of the subscription whose properties you want to get.</p>
  347. */
  348. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  349. @end
  350. /**
  351. <p>Response for GetSubscriptionAttributes action.</p>
  352. */
  353. @interface AWSSNSGetSubscriptionAttributesResponse : AWSModel
  354. /**
  355. <p>A map of the subscription's attributes. Attributes in this map include the following:</p><ul><li><p><code>ConfirmationWasAuthenticated</code> – <code>true</code> if the subscription confirmation request was authenticated.</p></li><li><p><code>DeliveryPolicy</code> – The JSON serialization of the subscription's delivery policy.</p></li><li><p><code>EffectiveDeliveryPolicy</code> – The JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults.</p></li><li><p><code>FilterPolicy</code> – The filter policy JSON that is assigned to the subscription.</p></li><li><p><code>Owner</code> – The AWS account ID of the subscription's owner.</p></li><li><p><code>PendingConfirmation</code> – <code>true</code> if the subscription hasn't been confirmed. To confirm a pending subscription, call the <code>ConfirmSubscription</code> action with a confirmation token.</p></li><li><p><code>RawMessageDelivery</code> – <code>true</code> if raw message delivery is enabled for the subscription. Raw messages are free of JSON formatting and can be sent to HTTP/S and Amazon SQS endpoints.</p></li><li><p><code>SubscriptionArn</code> – The subscription's ARN.</p></li><li><p><code>TopicArn</code> – The topic ARN that the subscription is associated with.</p></li></ul>
  356. */
  357. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  358. @end
  359. /**
  360. <p>Input for GetTopicAttributes action.</p>
  361. Required parameters: [TopicArn]
  362. */
  363. @interface AWSSNSGetTopicAttributesInput : AWSRequest
  364. /**
  365. <p>The ARN of the topic whose properties you want to get.</p>
  366. */
  367. @property (nonatomic, strong) NSString * _Nullable topicArn;
  368. @end
  369. /**
  370. <p>Response for GetTopicAttributes action.</p>
  371. */
  372. @interface AWSSNSGetTopicAttributesResponse : AWSModel
  373. /**
  374. <p>A map of the topic's attributes. Attributes in this map include the following:</p><ul><li><p><code>TopicArn</code> – the topic's ARN</p></li><li><p><code>Owner</code> – the AWS account ID of the topic's owner</p></li><li><p><code>Policy</code> – the JSON serialization of the topic's access control policy</p></li><li><p><code>DisplayName</code> – the human-readable name used in the "From" field for notifications to email and email-json endpoints</p></li><li><p><code>SubscriptionsPending</code> – the number of subscriptions pending confirmation on this topic</p></li><li><p><code>SubscriptionsConfirmed</code> – the number of confirmed subscriptions on this topic</p></li><li><p><code>SubscriptionsDeleted</code> – the number of deleted subscriptions on this topic</p></li><li><p><code>DeliveryPolicy</code> – the JSON serialization of the topic's delivery policy</p></li><li><p><code>EffectiveDeliveryPolicy</code> – the JSON serialization of the effective delivery policy that takes into account system defaults</p></li></ul>
  375. */
  376. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  377. @end
  378. /**
  379. <p>Input for ListEndpointsByPlatformApplication action.</p>
  380. Required parameters: [PlatformApplicationArn]
  381. */
  382. @interface AWSSNSListEndpointsByPlatformApplicationInput : AWSRequest
  383. /**
  384. <p>NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.</p>
  385. */
  386. @property (nonatomic, strong) NSString * _Nullable nextToken;
  387. /**
  388. <p>PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.</p>
  389. */
  390. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  391. @end
  392. /**
  393. <p>Response for ListEndpointsByPlatformApplication action.</p>
  394. */
  395. @interface AWSSNSListEndpointsByPlatformApplicationResponse : AWSModel
  396. /**
  397. <p>Endpoints returned for ListEndpointsByPlatformApplication action.</p>
  398. */
  399. @property (nonatomic, strong) NSArray<AWSSNSEndpoint *> * _Nullable endpoints;
  400. /**
  401. <p>NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.</p>
  402. */
  403. @property (nonatomic, strong) NSString * _Nullable nextToken;
  404. @end
  405. /**
  406. <p>The input for the <code>ListPhoneNumbersOptedOut</code> action.</p>
  407. */
  408. @interface AWSSNSListPhoneNumbersOptedOutInput : AWSRequest
  409. /**
  410. <p>A <code>NextToken</code> string is used when you call the <code>ListPhoneNumbersOptedOut</code> action to retrieve additional records that are available after the first page of results.</p>
  411. */
  412. @property (nonatomic, strong) NSString * _Nullable nextToken;
  413. @end
  414. /**
  415. <p>The response from the <code>ListPhoneNumbersOptedOut</code> action.</p>
  416. */
  417. @interface AWSSNSListPhoneNumbersOptedOutResponse : AWSModel
  418. /**
  419. <p>A <code>NextToken</code> string is returned when you call the <code>ListPhoneNumbersOptedOut</code> action if additional records are available after the first page of results.</p>
  420. */
  421. @property (nonatomic, strong) NSString * _Nullable nextToken;
  422. /**
  423. <p>A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.</p>
  424. */
  425. @property (nonatomic, strong) NSArray<NSString *> * _Nullable phoneNumbers;
  426. @end
  427. /**
  428. <p>Input for ListPlatformApplications action.</p>
  429. */
  430. @interface AWSSNSListPlatformApplicationsInput : AWSRequest
  431. /**
  432. <p>NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.</p>
  433. */
  434. @property (nonatomic, strong) NSString * _Nullable nextToken;
  435. @end
  436. /**
  437. <p>Response for ListPlatformApplications action.</p>
  438. */
  439. @interface AWSSNSListPlatformApplicationsResponse : AWSModel
  440. /**
  441. <p>NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.</p>
  442. */
  443. @property (nonatomic, strong) NSString * _Nullable nextToken;
  444. /**
  445. <p>Platform applications returned when calling ListPlatformApplications action.</p>
  446. */
  447. @property (nonatomic, strong) NSArray<AWSSNSPlatformApplication *> * _Nullable platformApplications;
  448. @end
  449. /**
  450. <p>Input for ListSubscriptionsByTopic action.</p>
  451. Required parameters: [TopicArn]
  452. */
  453. @interface AWSSNSListSubscriptionsByTopicInput : AWSRequest
  454. /**
  455. <p>Token returned by the previous <code>ListSubscriptionsByTopic</code> request.</p>
  456. */
  457. @property (nonatomic, strong) NSString * _Nullable nextToken;
  458. /**
  459. <p>The ARN of the topic for which you wish to find subscriptions.</p>
  460. */
  461. @property (nonatomic, strong) NSString * _Nullable topicArn;
  462. @end
  463. /**
  464. <p>Response for ListSubscriptionsByTopic action.</p>
  465. */
  466. @interface AWSSNSListSubscriptionsByTopicResponse : AWSModel
  467. /**
  468. <p>Token to pass along to the next <code>ListSubscriptionsByTopic</code> request. This element is returned if there are more subscriptions to retrieve.</p>
  469. */
  470. @property (nonatomic, strong) NSString * _Nullable nextToken;
  471. /**
  472. <p>A list of subscriptions.</p>
  473. */
  474. @property (nonatomic, strong) NSArray<AWSSNSSubscription *> * _Nullable subscriptions;
  475. @end
  476. /**
  477. <p>Input for ListSubscriptions action.</p>
  478. */
  479. @interface AWSSNSListSubscriptionsInput : AWSRequest
  480. /**
  481. <p>Token returned by the previous <code>ListSubscriptions</code> request.</p>
  482. */
  483. @property (nonatomic, strong) NSString * _Nullable nextToken;
  484. @end
  485. /**
  486. <p>Response for ListSubscriptions action</p>
  487. */
  488. @interface AWSSNSListSubscriptionsResponse : AWSModel
  489. /**
  490. <p>Token to pass along to the next <code>ListSubscriptions</code> request. This element is returned if there are more subscriptions to retrieve.</p>
  491. */
  492. @property (nonatomic, strong) NSString * _Nullable nextToken;
  493. /**
  494. <p>A list of subscriptions.</p>
  495. */
  496. @property (nonatomic, strong) NSArray<AWSSNSSubscription *> * _Nullable subscriptions;
  497. @end
  498. /**
  499. */
  500. @interface AWSSNSListTopicsInput : AWSRequest
  501. /**
  502. <p>Token returned by the previous <code>ListTopics</code> request.</p>
  503. */
  504. @property (nonatomic, strong) NSString * _Nullable nextToken;
  505. @end
  506. /**
  507. <p>Response for ListTopics action.</p>
  508. */
  509. @interface AWSSNSListTopicsResponse : AWSModel
  510. /**
  511. <p>Token to pass along to the next <code>ListTopics</code> request. This element is returned if there are additional topics to retrieve.</p>
  512. */
  513. @property (nonatomic, strong) NSString * _Nullable nextToken;
  514. /**
  515. <p>A list of topic ARNs.</p>
  516. */
  517. @property (nonatomic, strong) NSArray<AWSSNSTopic *> * _Nullable topics;
  518. @end
  519. /**
  520. <p>The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see <a href="http://docs.aws.amazon.com/sns/latest/api/API_Publish.html">Publish</a>.</p><p>Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes). For more information, see <a href="http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html">Using Amazon SNS Message Attributes</a>.</p>
  521. Required parameters: [DataType]
  522. */
  523. @interface AWSSNSMessageAttributeValue : AWSModel
  524. /**
  525. <p>Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.</p>
  526. */
  527. @property (nonatomic, strong) NSData * _Nullable binaryValue;
  528. /**
  529. <p>Amazon SNS supports the following logical data types: String, String.Array, Number, and Binary. For more information, see <a href="http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html#SNSMessageAttributes.DataTypes">Message Attribute Data Types</a>.</p>
  530. */
  531. @property (nonatomic, strong) NSString * _Nullable dataType;
  532. /**
  533. <p>Strings are Unicode with UTF8 binary encoding. For a list of code values, see <a href="http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters">http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>.</p>
  534. */
  535. @property (nonatomic, strong) NSString * _Nullable stringValue;
  536. @end
  537. /**
  538. <p>Input for the OptInPhoneNumber action.</p>
  539. Required parameters: [phoneNumber]
  540. */
  541. @interface AWSSNSOptInPhoneNumberInput : AWSRequest
  542. /**
  543. <p>The phone number to opt in.</p>
  544. */
  545. @property (nonatomic, strong) NSString * _Nullable phoneNumber;
  546. @end
  547. /**
  548. <p>The response for the OptInPhoneNumber action.</p>
  549. */
  550. @interface AWSSNSOptInPhoneNumberResponse : AWSModel
  551. @end
  552. /**
  553. <p>Platform application object.</p>
  554. */
  555. @interface AWSSNSPlatformApplication : AWSModel
  556. /**
  557. <p>Attributes for platform application object.</p>
  558. */
  559. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  560. /**
  561. <p>PlatformApplicationArn for platform application object.</p>
  562. */
  563. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  564. @end
  565. /**
  566. <p>Input for Publish action.</p>
  567. Required parameters: [Message]
  568. */
  569. @interface AWSSNSPublishInput : AWSRequest
  570. /**
  571. <p>The message you want to send.</p><important><p>The <code>Message</code> parameter is always a string. If you set <code>MessageStructure</code> to <code>json</code>, you must string-encode the <code>Message</code> parameter.</p></important><p>If you are publishing to a topic and you want to send the same message to all transport protocols, include the text of the message as a String value. If you want to send different messages for each transport protocol, set the value of the <code>MessageStructure</code> parameter to <code>json</code> and use a JSON object for the <code>Message</code> parameter. </p><p/><p>Constraints:</p><ul><li><p>With the exception of SMS, messages must be UTF-8 encoded strings and at most 256 KB in size (262,144 bytes, not 262,144 characters).</p></li><li><p>For SMS, each message can contain up to 140 characters. This character limit depends on the encoding schema. For example, an SMS message can contain 160 GSM characters, 140 ASCII characters, or 70 UCS-2 characters.</p><p>If you publish a message that exceeds this size limit, Amazon SNS sends the message as multiple messages, each fitting within the size limit. Messages aren't truncated mid-word but are cut off at whole-word boundaries.</p><p>The total size limit for a single SMS <code>Publish</code> action is 1,600 characters.</p></li></ul><p>JSON-specific constraints:</p><ul><li><p>Keys in the JSON object that correspond to supported transport protocols must have simple JSON string values.</p></li><li><p>The values will be parsed (unescaped) before they are used in outgoing messages.</p></li><li><p>Outbound notifications are JSON encoded (meaning that the characters will be reescaped for sending).</p></li><li><p>Values have a minimum length of 0 (the empty string, "", is allowed).</p></li><li><p>Values have a maximum length bounded by the overall message size (so, including multiple protocols may limit message sizes).</p></li><li><p>Non-string values will cause the key to be ignored.</p></li><li><p>Keys that do not correspond to supported transport protocols are ignored.</p></li><li><p>Duplicate keys are not allowed.</p></li><li><p>Failure to parse or validate any key or value in the message will cause the <code>Publish</code> call to return an error (no partial delivery).</p></li></ul>
  572. */
  573. @property (nonatomic, strong) NSString * _Nullable message;
  574. /**
  575. <p>Message attributes for Publish action.</p>
  576. */
  577. @property (nonatomic, strong) NSDictionary<NSString *, AWSSNSMessageAttributeValue *> * _Nullable messageAttributes;
  578. /**
  579. <p>Set <code>MessageStructure</code> to <code>json</code> if you want to send a different message for each protocol. For example, using one publish action, you can send a short message to your SMS subscribers and a longer message to your email subscribers. If you set <code>MessageStructure</code> to <code>json</code>, the value of the <code>Message</code> parameter must: </p><ul><li><p>be a syntactically valid JSON object; and</p></li><li><p>contain at least a top-level JSON key of "default" with a value that is a string.</p></li></ul><p>You can define other top-level keys that define the message you want to send to a specific transport protocol (e.g., "http").</p><p>For information about sending different messages for each protocol using the AWS Management Console, go to <a href="http://docs.aws.amazon.com/sns/latest/gsg/Publish.html#sns-message-formatting-by-protocol">Create Different Messages for Each Protocol</a> in the <i>Amazon Simple Notification Service Getting Started Guide</i>. </p><p>Valid value: <code>json</code></p>
  580. */
  581. @property (nonatomic, strong) NSString * _Nullable messageStructure;
  582. /**
  583. <p>The phone number to which you want to deliver an SMS message. Use E.164 format.</p><p>If you don't specify a value for the <code>PhoneNumber</code> parameter, you must specify a value for the <code>TargetArn</code> or <code>TopicArn</code> parameters.</p>
  584. */
  585. @property (nonatomic, strong) NSString * _Nullable phoneNumber;
  586. /**
  587. <p>Optional parameter to be used as the "Subject" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.</p><p>Constraints: Subjects must be ASCII text that begins with a letter, number, or punctuation mark; must not include line breaks or control characters; and must be less than 100 characters long.</p>
  588. */
  589. @property (nonatomic, strong) NSString * _Nullable subject;
  590. /**
  591. <p>Either TopicArn or EndpointArn, but not both.</p><p>If you don't specify a value for the <code>TargetArn</code> parameter, you must specify a value for the <code>PhoneNumber</code> or <code>TopicArn</code> parameters.</p>
  592. */
  593. @property (nonatomic, strong) NSString * _Nullable targetArn;
  594. /**
  595. <p>The topic you want to publish to.</p><p>If you don't specify a value for the <code>TopicArn</code> parameter, you must specify a value for the <code>PhoneNumber</code> or <code>TargetArn</code> parameters.</p>
  596. */
  597. @property (nonatomic, strong) NSString * _Nullable topicArn;
  598. @end
  599. /**
  600. <p>Response for Publish action.</p>
  601. */
  602. @interface AWSSNSPublishResponse : AWSModel
  603. /**
  604. <p>Unique identifier assigned to the published message.</p><p>Length Constraint: Maximum 100 characters</p>
  605. */
  606. @property (nonatomic, strong) NSString * _Nullable messageId;
  607. @end
  608. /**
  609. <p>Input for RemovePermission action.</p>
  610. Required parameters: [TopicArn, Label]
  611. */
  612. @interface AWSSNSRemovePermissionInput : AWSRequest
  613. /**
  614. <p>The unique label of the statement you want to remove.</p>
  615. */
  616. @property (nonatomic, strong) NSString * _Nullable label;
  617. /**
  618. <p>The ARN of the topic whose access control policy you wish to modify.</p>
  619. */
  620. @property (nonatomic, strong) NSString * _Nullable topicArn;
  621. @end
  622. /**
  623. <p>Input for SetEndpointAttributes action.</p>
  624. Required parameters: [EndpointArn, Attributes]
  625. */
  626. @interface AWSSNSSetEndpointAttributesInput : AWSRequest
  627. /**
  628. <p>A map of the endpoint attributes. Attributes in this map include the following:</p><ul><li><p><code>CustomUserData</code> – arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</p></li><li><p><code>Enabled</code> – flag that enables/disables delivery to the endpoint. Amazon SNS will set this to false when a notification service indicates to Amazon SNS that the endpoint is invalid. Users can set it back to true, typically after updating Token.</p></li><li><p><code>Token</code> – device token, also referred to as a registration id, for an app and mobile device. This is returned from the notification service when an app and mobile device are registered with the notification service.</p></li></ul>
  629. */
  630. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  631. /**
  632. <p>EndpointArn used for SetEndpointAttributes action.</p>
  633. */
  634. @property (nonatomic, strong) NSString * _Nullable endpointArn;
  635. @end
  636. /**
  637. <p>Input for SetPlatformApplicationAttributes action.</p>
  638. Required parameters: [PlatformApplicationArn, Attributes]
  639. */
  640. @interface AWSSNSSetPlatformApplicationAttributesInput : AWSRequest
  641. /**
  642. <p>A map of the platform application attributes. Attributes in this map include the following:</p><ul><li><p><code>PlatformCredential</code> – The credential received from the notification service. For APNS/APNS_SANDBOX, PlatformCredential is private key. For GCM, PlatformCredential is "API key". For ADM, PlatformCredential is "client secret".</p></li><li><p><code>PlatformPrincipal</code> – The principal received from the notification service. For APNS/APNS_SANDBOX, PlatformPrincipal is SSL certificate. For GCM, PlatformPrincipal is not applicable. For ADM, PlatformPrincipal is "client id".</p></li><li><p><code>EventEndpointCreated</code> – Topic ARN to which EndpointCreated event notifications should be sent.</p></li><li><p><code>EventEndpointDeleted</code> – Topic ARN to which EndpointDeleted event notifications should be sent.</p></li><li><p><code>EventEndpointUpdated</code> – Topic ARN to which EndpointUpdate event notifications should be sent.</p></li><li><p><code>EventDeliveryFailure</code> – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.</p></li><li><p><code>SuccessFeedbackRoleArn</code> – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf.</p></li><li><p><code>FailureFeedbackRoleArn</code> – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf.</p></li><li><p><code>SuccessFeedbackSampleRate</code> – Sample rate percentage (0-100) of successfully delivered messages.</p></li></ul>
  643. */
  644. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  645. /**
  646. <p>PlatformApplicationArn for SetPlatformApplicationAttributes action.</p>
  647. */
  648. @property (nonatomic, strong) NSString * _Nullable platformApplicationArn;
  649. @end
  650. /**
  651. <p>The input for the SetSMSAttributes action.</p>
  652. Required parameters: [attributes]
  653. */
  654. @interface AWSSNSSetSMSAttributesInput : AWSRequest
  655. /**
  656. <p>The default settings for sending SMS messages from your account. You can set values for the following attribute names:</p><p><code>MonthlySpendLimit</code> – The maximum amount in USD that you are willing to spend each month to send SMS messages. When Amazon SNS determines that sending an SMS message would incur a cost that exceeds this limit, it stops sending SMS messages within minutes.</p><important><p>Amazon SNS stops sending SMS messages within minutes of the limit being crossed. During that interval, if you continue to send SMS messages, you will incur costs that exceed your limit.</p></important><p>By default, the spend limit is set to the maximum allowed by Amazon SNS. If you want to raise the limit, submit an <a href="https://console.aws.amazon.com/support/home#/case/create?issueType=service-limit-increase&amp;limitType=service-code-sns">SNS Limit Increase case</a>. For <b>New limit value</b>, enter your desired monthly spend limit. In the <b>Use Case Description</b> field, explain that you are requesting an SMS monthly spend limit increase.</p><p><code>DeliveryStatusIAMRole</code> – The ARN of the IAM role that allows Amazon SNS to write logs about SMS deliveries in CloudWatch Logs. For each SMS message that you send, Amazon SNS writes a log that includes the message price, the success or failure status, the reason for failure (if the message failed), the message dwell time, and other information.</p><p><code>DeliveryStatusSuccessSamplingRate</code> – The percentage of successful SMS deliveries for which Amazon SNS will write logs in CloudWatch Logs. The value can be an integer from 0 - 100. For example, to write logs only for failed deliveries, set this value to <code>0</code>. To write logs for 10% of your successful deliveries, set it to <code>10</code>.</p><p><code>DefaultSenderID</code> – A string, such as your business brand, that is displayed as the sender on the receiving device. Support for sender IDs varies by country. The sender ID can be 1 - 11 alphanumeric characters, and it must contain at least one letter.</p><p><code>DefaultSMSType</code> – The type of SMS message that you will send by default. You can assign the following values:</p><ul><li><p><code>Promotional</code> – (Default) Noncritical messages, such as marketing messages. Amazon SNS optimizes the message delivery to incur the lowest cost.</p></li><li><p><code>Transactional</code> – Critical messages that support customer transactions, such as one-time passcodes for multi-factor authentication. Amazon SNS optimizes the message delivery to achieve the highest reliability.</p></li></ul><p><code>UsageReportS3Bucket</code> – The name of the Amazon S3 bucket to receive daily SMS usage reports from Amazon SNS. Each day, Amazon SNS will deliver a usage report as a CSV file to the bucket. The report includes the following information for each SMS message that was successfully delivered by your account:</p><ul><li><p>Time that the message was published (in UTC)</p></li><li><p>Message ID</p></li><li><p>Destination phone number</p></li><li><p>Message type</p></li><li><p>Delivery status</p></li><li><p>Message price (in USD)</p></li><li><p>Part number (a message is split into multiple parts if it is too long for a single message)</p></li><li><p>Total number of parts</p></li></ul><p>To receive the report, the bucket must have a policy that allows the Amazon SNS service principle to perform the <code>s3:PutObject</code> and <code>s3:GetBucketLocation</code> actions.</p><p>For an example bucket policy and usage report, see <a href="http://docs.aws.amazon.com/sns/latest/dg/sms_stats.html">Monitoring SMS Activity</a> in the <i>Amazon SNS Developer Guide</i>.</p>
  657. */
  658. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  659. @end
  660. /**
  661. <p>The response for the SetSMSAttributes action.</p>
  662. */
  663. @interface AWSSNSSetSMSAttributesResponse : AWSModel
  664. @end
  665. /**
  666. <p>Input for SetSubscriptionAttributes action.</p>
  667. Required parameters: [SubscriptionArn, AttributeName]
  668. */
  669. @interface AWSSNSSetSubscriptionAttributesInput : AWSRequest
  670. /**
  671. <p>A map of attributes with their corresponding values.</p><p>The following lists the names, descriptions, and values of the special request parameters that the <code>SetTopicAttributes</code> action uses:</p><ul><li><p><code>DeliveryPolicy</code> – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.</p></li><li><p><code>FilterPolicy</code> – The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.</p></li><li><p><code>RawMessageDelivery</code> – When set to <code>true</code>, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.</p></li></ul>
  672. */
  673. @property (nonatomic, strong) NSString * _Nullable attributeName;
  674. /**
  675. <p>The new value for the attribute in JSON format.</p>
  676. */
  677. @property (nonatomic, strong) NSString * _Nullable attributeValue;
  678. /**
  679. <p>The ARN of the subscription to modify.</p>
  680. */
  681. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  682. @end
  683. /**
  684. <p>Input for SetTopicAttributes action.</p>
  685. Required parameters: [TopicArn, AttributeName]
  686. */
  687. @interface AWSSNSSetTopicAttributesInput : AWSRequest
  688. /**
  689. <p>A map of attributes with their corresponding values.</p><p>The following lists the names, descriptions, and values of the special request parameters that the <code>SetTopicAttributes</code> action uses:</p><ul><li><p><code>DeliveryPolicy</code> – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.</p></li><li><p><code>DisplayName</code> – The display name to use for a topic with SMS subscriptions.</p></li><li><p><code>Policy</code> – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.</p></li></ul>
  690. */
  691. @property (nonatomic, strong) NSString * _Nullable attributeName;
  692. /**
  693. <p>The new value for the attribute.</p>
  694. */
  695. @property (nonatomic, strong) NSString * _Nullable attributeValue;
  696. /**
  697. <p>The ARN of the topic to modify.</p>
  698. */
  699. @property (nonatomic, strong) NSString * _Nullable topicArn;
  700. @end
  701. /**
  702. <p>Input for Subscribe action.</p>
  703. Required parameters: [TopicArn, Protocol]
  704. */
  705. @interface AWSSNSSubscribeInput : AWSRequest
  706. /**
  707. <p>A map of attributes with their corresponding values.</p><p>The following lists the names, descriptions, and values of the special request parameters that the <code>SetTopicAttributes</code> action uses:</p><ul><li><p><code>DeliveryPolicy</code> – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.</p></li><li><p><code>FilterPolicy</code> – The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.</p></li><li><p><code>RawMessageDelivery</code> – When set to <code>true</code>, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.</p></li></ul>
  708. */
  709. @property (nonatomic, strong) NSDictionary<NSString *, NSString *> * _Nullable attributes;
  710. /**
  711. <p>The endpoint that you want to receive notifications. Endpoints vary by protocol:</p><ul><li><p>For the <code>http</code> protocol, the endpoint is an URL beginning with "http://"</p></li><li><p>For the <code>https</code> protocol, the endpoint is a URL beginning with "https://"</p></li><li><p>For the <code>email</code> protocol, the endpoint is an email address</p></li><li><p>For the <code>email-json</code> protocol, the endpoint is an email address</p></li><li><p>For the <code>sms</code> protocol, the endpoint is a phone number of an SMS-enabled device</p></li><li><p>For the <code>sqs</code> protocol, the endpoint is the ARN of an Amazon SQS queue</p></li><li><p>For the <code>application</code> protocol, the endpoint is the EndpointArn of a mobile app and device.</p></li><li><p>For the <code>lambda</code> protocol, the endpoint is the ARN of an AWS Lambda function.</p></li></ul>
  712. */
  713. @property (nonatomic, strong) NSString * _Nullable endpoint;
  714. /**
  715. <p>The protocol you want to use. Supported protocols include:</p><ul><li><p><code>http</code> – delivery of JSON-encoded message via HTTP POST</p></li><li><p><code>https</code> – delivery of JSON-encoded message via HTTPS POST</p></li><li><p><code>email</code> – delivery of message via SMTP</p></li><li><p><code>email-json</code> – delivery of JSON-encoded message via SMTP</p></li><li><p><code>sms</code> – delivery of message via SMS</p></li><li><p><code>sqs</code> – delivery of JSON-encoded message to an Amazon SQS queue</p></li><li><p><code>application</code> – delivery of JSON-encoded message to an EndpointArn for a mobile app and device.</p></li><li><p><code>lambda</code> – delivery of JSON-encoded message to an AWS Lambda function.</p></li></ul>
  716. */
  717. @property (nonatomic, strong) NSString * _Nullable protocols;
  718. /**
  719. <p>Sets whether the response from the <code>Subscribe</code> request includes the subscription ARN, even if the subscription is not yet confirmed.</p><p>If you set this parameter to <code>false</code>, the response includes the ARN for confirmed subscriptions, but it includes an ARN value of "pending subscription" for subscriptions that are not yet confirmed. A subscription becomes confirmed when the subscriber calls the <code>ConfirmSubscription</code> action with a confirmation token.</p><p>If you set this parameter to <code>true</code>, the response includes the ARN in all cases, even if the subscription is not yet confirmed.</p><p>The default value is <code>false</code>.</p>
  720. */
  721. @property (nonatomic, strong) NSNumber * _Nullable returnSubscriptionArn;
  722. /**
  723. <p>The ARN of the topic you want to subscribe to.</p>
  724. */
  725. @property (nonatomic, strong) NSString * _Nullable topicArn;
  726. @end
  727. /**
  728. <p>Response for Subscribe action.</p>
  729. */
  730. @interface AWSSNSSubscribeResponse : AWSModel
  731. /**
  732. <p>The ARN of the subscription if it is confirmed, or the string "pending confirmation" if the subscription requires confirmation. However, if the API request parameter <code>ReturnSubscriptionArn</code> is true, then the value is always the subscription ARN, even if the subscription requires confirmation.</p>
  733. */
  734. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  735. @end
  736. /**
  737. <p>A wrapper type for the attributes of an Amazon SNS subscription.</p>
  738. */
  739. @interface AWSSNSSubscription : AWSModel
  740. /**
  741. <p>The subscription's endpoint (format depends on the protocol).</p>
  742. */
  743. @property (nonatomic, strong) NSString * _Nullable endpoint;
  744. /**
  745. <p>The subscription's owner.</p>
  746. */
  747. @property (nonatomic, strong) NSString * _Nullable owner;
  748. /**
  749. <p>The subscription's protocol.</p>
  750. */
  751. @property (nonatomic, strong) NSString * _Nullable protocols;
  752. /**
  753. <p>The subscription's ARN.</p>
  754. */
  755. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  756. /**
  757. <p>The ARN of the subscription's topic.</p>
  758. */
  759. @property (nonatomic, strong) NSString * _Nullable topicArn;
  760. @end
  761. /**
  762. <p>A wrapper type for the topic's Amazon Resource Name (ARN). To retrieve a topic's attributes, use <code>GetTopicAttributes</code>.</p>
  763. */
  764. @interface AWSSNSTopic : AWSModel
  765. /**
  766. <p>The topic's ARN.</p>
  767. */
  768. @property (nonatomic, strong) NSString * _Nullable topicArn;
  769. @end
  770. /**
  771. <p>Input for Unsubscribe action.</p>
  772. Required parameters: [SubscriptionArn]
  773. */
  774. @interface AWSSNSUnsubscribeInput : AWSRequest
  775. /**
  776. <p>The ARN of the subscription to be deleted.</p>
  777. */
  778. @property (nonatomic, strong) NSString * _Nullable subscriptionArn;
  779. @end
  780. NS_ASSUME_NONNULL_END