list_platform_applications¶
Operation¶
list_platform_applications
async
¶
list_platform_applications(input: ListPlatformApplicationsInput, plugins: list[Plugin] | None = None) -> ListPlatformApplicationsOutput
Lists the platform application objects for the supported push
notification services, such as APNS and GCM (Firebase Cloud Messaging).
The results for ListPlatformApplications are paginated and return a
limited list of applications, up to 100. If additional records are
available after the first page results, then a NextToken string will be
returned. To receive the next page, you call ListPlatformApplications
using the NextToken string received from the previous call. When there
are no more records to return, NextToken will be null. For more
information, see Using Amazon SNS Mobile Push
Notifications.
This action is throttled at 15 transactions per second (TPS).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListPlatformApplicationsInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
ListPlatformApplicationsOutput
|
An instance of |
Input¶
ListPlatformApplicationsInput
dataclass
¶
Output¶
ListPlatformApplicationsOutput
dataclass
¶
Response for ListPlatformApplications action.
Attributes¶
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
NextToken string is returned when calling ListPlatformApplications
action if additional records are available after the first page results.
platform_applications
class-attribute
instance-attribute
¶
platform_applications: list[PlatformApplication] | None = None
Platform applications returned when calling ListPlatformApplications
action.