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¶
ApplicationName |
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application. |
VersionLabel |
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application version. |
EnvironmentIds |
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs. |
EnvironmentNames |
If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names. |
IncludeDeleted |
Indicates whether to include deleted environments:
|
IncludedDeletedBackTo |
If specified when |
MaxRecords |
For a paginated request. Specify a maximum number of environments to include in each response. If no |
NextToken |
For 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 |
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"
)
Examples¶
## Not run:
# The following operation retrieves information about an environment named
# my-env:
svc$describe_environments(
EnvironmentNames = list(
"my-env"
)
)
## End(Not run)