Learn R Programming

paws.compute (version 0.1.12)

elasticbeanstalk_describe_applications: Returns the descriptions of existing applications

Description

Returns the descriptions of existing applications.

Usage

elasticbeanstalk_describe_applications(ApplicationNames)

Value

A list with the following syntax:

list(
  Applications = list(
    list(
      ApplicationArn = "string",
      ApplicationName = "string",
      Description = "string",
      DateCreated = as.POSIXct(
        "2015-01-01"
      ),
      DateUpdated = as.POSIXct(
        "2015-01-01"
      ),
      Versions = list(
        "string"
      ),
      ConfigurationTemplates = list(
        "string"
      ),
      ResourceLifecycleConfig = list(
        ServiceRole = "string",
        VersionLifecycleConfig = list(
          MaxCountRule = list(
            Enabled = TRUE|FALSE,
            MaxCount = 123,
            DeleteSourceFromS3 = TRUE|FALSE
          ),
          MaxAgeRule = list(
            Enabled = TRUE|FALSE,
            MaxAgeInDays = 123,
            DeleteSourceFromS3 = TRUE|FALSE
          )
        )
      )
    )
  )
)

Arguments

ApplicationNames

If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names.

Request syntax

svc$describe_applications(
  ApplicationNames = list(
    "string"
  )
)

Examples

Run this code
if (FALSE) {
# The following operation retrieves information about applications in the
# current region:
svc$describe_applications()
}

Run the code above in your browser using DataLab