Class: Aws::ElasticBeanstalk::Types::EnvironmentLink
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::EnvironmentLink
- Defined in:
- gems/aws-sdk-elasticbeanstalk/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) for details.
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).
2472 2473 2474 2475 2476 2477 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2472 class EnvironmentLink < Struct.new( :link_name, :environment_name) SENSITIVE = [] include Aws::Structure end |
#link_name ⇒ String
The name of the link.
2472 2473 2474 2475 2476 2477 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2472 class EnvironmentLink < Struct.new( :link_name, :environment_name) SENSITIVE = [] include Aws::Structure end |