Learn R Programming

paws.customer.engagement (version 0.1.12)

pinpoint_get_application_settings: Retrieves information about the settings for an application

Description

Retrieves information about the settings for an application.

Usage

pinpoint_get_application_settings(ApplicationId)

Value

A list with the following syntax:

list(
  ApplicationSettingsResource = list(
    ApplicationId = "string",
    CampaignHook = list(
      LambdaFunctionName = "string",
      Mode = "DELIVERY"|"FILTER",
      WebUrl = "string"
    ),
    LastModifiedDate = "string",
    Limits = list(
      Daily = 123,
      MaximumDuration = 123,
      MessagesPerSecond = 123,
      Total = 123
    ),
    QuietTime = list(
      End = "string",
      Start = "string"
    )
  )
)

Arguments

ApplicationId

[required] The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

Request syntax

svc$get_application_settings(
  ApplicationId = "string"
)