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

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

Instance Attribute Details

#environment_nameString

The name of the linked environment (the dependency).

Returns:

  • (String)


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

The name of the link.

Returns:

  • (String)


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