Class: Aws::ElasticBeanstalk::Types::EnvironmentLink
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::EnvironmentLink
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
A link to another environment, defined in the environment’s manifest. Links provide connection information in system properties that can be used to connect to another environment in the same group. See
- Environment Manifest (env.yaml)][1
-
for details.
[1]: docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_name ⇒ String
The name of the linked environment (the dependency).
-
#link_name ⇒ String
The name of the link.
Instance Attribute Details
#environment_name ⇒ String
The name of the linked environment (the dependency).
2403 2404 2405 2406 2407 2408 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 2403 class EnvironmentLink < Struct.new( :link_name, :environment_name) SENSITIVE = [] include Aws::Structure end |
#link_name ⇒ String
The name of the link.
2403 2404 2405 2406 2407 2408 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 2403 class EnvironmentLink < Struct.new( :link_name, :environment_name) SENSITIVE = [] include Aws::Structure end |