Get Application Settings
pinpoint_get_application_settings | R Documentation |
Retrieves information about the settings for an application¶
Description¶
Retrieves information about the settings for an application.
Usage¶
Arguments¶
ApplicationId
[required] The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
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,
Session = 123
),
QuietTime = list(
End = "string",
Start = "string"
),
JourneyLimits = list(
DailyCap = 123,
TimeframeCap = list(
Cap = 123,
Days = 123
),
TotalCap = 123
)
)
)