pub struct ListPlatformApplications { /* private fields */ }Expand description
Fluent builder constructing a request to ListPlatformApplications.
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).
Implementations§
source§impl ListPlatformApplications
impl ListPlatformApplications
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListPlatformApplications, AwsResponseRetryClassifier>, SdkError<ListPlatformApplicationsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListPlatformApplications, AwsResponseRetryClassifier>, SdkError<ListPlatformApplicationsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListPlatformApplicationsOutput, SdkError<ListPlatformApplicationsError>>
pub async fn send(
self
) -> Result<ListPlatformApplicationsOutput, SdkError<ListPlatformApplicationsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListPlatformApplicationsPaginator
pub fn into_paginator(self) -> ListPlatformApplicationsPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.
Trait Implementations§
source§impl Clone for ListPlatformApplications
impl Clone for ListPlatformApplications
source§fn clone(&self) -> ListPlatformApplications
fn clone(&self) -> ListPlatformApplications
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more