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).
2403 2404 2405 2406 2407 2408 |
# File 'gems/aws-sdk-elasticbeanstalk/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 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 2403 class EnvironmentLink < Struct.new( :link_name, :environment_name) SENSITIVE = [] include Aws::Structure end |