Method: Aws::OpsWorks::Types::CreateAppRequest#type
- Defined in:
- lib/aws-sdk-opsworks/types.rb
#type ⇒ String
The app type. Each supported type is associated with a particular layer. For example, PHP applications are associated with a PHP layer. OpsWorks Stacks deploys an application to those instances that are members of the corresponding layer. If your app isn’t one of the standard types, or you prefer to implement your own Deploy recipes, specify ‘other`.
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 |
# File 'lib/aws-sdk-opsworks/types.rb', line 997 class CreateAppRequest < Struct.new( :stack_id, :shortname, :name, :description, :data_sources, :type, :app_source, :domains, :enable_ssl, :ssl_configuration, :attributes, :environment) SENSITIVE = [] include Aws::Structure end |