Describe Applications
| elasticbeanstalk_describe_applications | R Documentation |
Returns the descriptions of existing applications¶
Description¶
Returns the descriptions of existing applications.
Usage¶
Arguments¶
ApplicationNamesIf 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
)
)
)
)
)
)