Learn R Programming

paws.compute (version 0.1.12)

lambda_get_account_settings: Retrieves details about your account's limits and usage in an AWS Region

Description

Retrieves details about your account's limits and usage in an AWS Region.

Usage

lambda_get_account_settings()

Arguments

Value

A list with the following syntax:

list(
  AccountLimit = list(
    TotalCodeSize = 123,
    CodeSizeUnzipped = 123,
    CodeSizeZipped = 123,
    ConcurrentExecutions = 123,
    UnreservedConcurrentExecutions = 123
  ),
  AccountUsage = list(
    TotalCodeSize = 123,
    FunctionCount = 123
  )
)

Request syntax

svc$get_account_settings()

Examples

Run this code
if (FALSE) {
# This operation takes no parameters and returns details about storage and
# concurrency quotas in the current Region.
svc$get_account_settings()
}

Run the code above in your browser using DataLab