Class: Aws::ElasticBeanstalk::Types::RestartAppServerMessage

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#environment_idString

The ID of the environment to restart the server for.

Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

Returns:

  • (String)


3725
3726
3727
3728
3729
3730
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 3725

class RestartAppServerMessage < Struct.new(
  :environment_id,
  :environment_name)
  SENSITIVE = []
  include Aws::Structure
end

#environment_nameString

The name of the environment to restart the server for.

Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

Returns:

  • (String)


3725
3726
3727
3728
3729
3730
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 3725

class RestartAppServerMessage < Struct.new(
  :environment_id,
  :environment_name)
  SENSITIVE = []
  include Aws::Structure
end