Class: Aws::ElasticBeanstalk::Types::EnvironmentLink

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#environment_nameString

The name of the linked environment (the dependency).

Returns:

  • (String)


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

The name of the link.

Returns:

  • (String)


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