Describe Applications
elasticbeanstalk_describe_applications | R Documentation |
Returns the descriptions of existing applications¶
Description¶
Returns the descriptions of existing applications.
Usage¶
elasticbeanstalk_describe_applications(ApplicationNames)
Arguments¶
ApplicationNames |
If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names. |
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
)
)
)
)
)
)
Request syntax¶
svc$describe_applications(
ApplicationNames = list(
"string"
)
)
Examples¶
## Not run:
# The following operation retrieves information about applications in the
# current region:
svc$describe_applications()
## End(Not run)