Class: Aws::ElasticBeanstalk::Types::SourceConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticbeanstalk/types.rb

Overview

Note:

When making an API call, you may pass SourceConfiguration data as a hash:

{
  application_name: "ApplicationName",
  template_name: "ConfigurationTemplateName",
}

A specification for an environment configuration

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

The name of the application associated with the configuration.

Returns:

  • (String)


3753
3754
3755
3756
3757
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3753

class SourceConfiguration < Struct.new(
  :application_name,
  :template_name)
  include Aws::Structure
end

#template_nameString

The name of the configuration template.

Returns:

  • (String)


3753
3754
3755
3756
3757
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3753

class SourceConfiguration < Struct.new(
  :application_name,
  :template_name)
  include Aws::Structure
end