Describe Environments
| elasticbeanstalk_describe_environments | R Documentation |
Returns descriptions for existing environments¶
Description¶
Returns descriptions for existing environments.
Usage¶
elasticbeanstalk_describe_environments(ApplicationName, VersionLabel,
EnvironmentIds, EnvironmentNames, IncludeDeleted, IncludedDeletedBackTo,
MaxRecords, NextToken)
Arguments¶
ApplicationNameIf specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application.
VersionLabelIf specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version.
EnvironmentIdsIf specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs.
EnvironmentNamesIf specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names.
IncludeDeletedIndicates whether to include deleted environments:
true: Environments that have been deleted afterIncludedDeletedBackToare displayed.false: Do not include deleted environments.IncludedDeletedBackToIf specified when
IncludeDeletedis set totrue, then environments deleted after this date are displayed.MaxRecordsFor a paginated request. Specify a maximum number of environments to include in each response.
If no
MaxRecordsis specified, all available environments are retrieved in a single response.NextTokenFor a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no
NextTokenis specified, the first page is retrieved.
Value¶
A list with the following syntax:
list(
Environments = list(
list(
EnvironmentName = "string",
EnvironmentId = "string",
ApplicationName = "string",
VersionLabel = "string",
SolutionStackName = "string",
PlatformArn = "string",
TemplateName = "string",
Description = "string",
EndpointURL = "string",
CNAME = "string",
DateCreated = as.POSIXct(
"2015-01-01"
),
DateUpdated = as.POSIXct(
"2015-01-01"
),
Status = "Aborting"|"Launching"|"Updating"|"LinkingFrom"|"LinkingTo"|"Ready"|"Terminating"|"Terminated",
AbortableOperationInProgress = TRUE|FALSE,
Health = "Green"|"Yellow"|"Red"|"Grey",
HealthStatus = "NoData"|"Unknown"|"Pending"|"Ok"|"Info"|"Warning"|"Degraded"|"Severe"|"Suspended",
Resources = list(
LoadBalancer = list(
LoadBalancerName = "string",
Domain = "string",
Listeners = list(
list(
Protocol = "string",
Port = 123
)
)
)
),
Tier = list(
Name = "string",
Type = "string",
Version = "string"
),
EnvironmentLinks = list(
list(
LinkName = "string",
EnvironmentName = "string"
)
),
EnvironmentArn = "string",
OperationsRole = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_environments(
ApplicationName = "string",
VersionLabel = "string",
EnvironmentIds = list(
"string"
),
EnvironmentNames = list(
"string"
),
IncludeDeleted = TRUE|FALSE,
IncludedDeletedBackTo = as.POSIXct(
"2015-01-01"
),
MaxRecords = 123,
NextToken = "string"
)