Class: Aws::ElasticBeanstalk::Types::RebuildEnvironmentMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::RebuildEnvironmentMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_id ⇒ String
The ID of the environment to rebuild.
-
#environment_name ⇒ String
The name of the environment to rebuild.
Instance Attribute Details
#environment_id ⇒ String
The ID of the environment to rebuild.
Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
3573 3574 3575 3576 3577 3578 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3573 class RebuildEnvironmentMessage < Struct.new( :environment_id, :environment_name) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the environment to rebuild.
Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
3573 3574 3575 3576 3577 3578 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3573 class RebuildEnvironmentMessage < Struct.new( :environment_id, :environment_name) SENSITIVE = [] include Aws::Structure end |