Class: Aws::ElasticBeanstalk::Types::RequestEnvironmentInfoMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::RequestEnvironmentInfoMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Request to retrieve logs from an environment and store them in your Elastic Beanstalk storage bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_id ⇒ String
The ID of the environment of the requested data.
-
#environment_name ⇒ String
The name of the environment of the requested data.
-
#info_type ⇒ String
The type of information to request.
Instance Attribute Details
#environment_id ⇒ String
The ID of the environment of the requested data.
If no such environment is found, ‘RequestEnvironmentInfo` returns an `InvalidParameterValue` error.
Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
3611 3612 3613 3614 3615 3616 3617 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3611 class RequestEnvironmentInfoMessage < Struct.new( :environment_id, :environment_name, :info_type) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the environment of the requested data.
If no such environment is found, ‘RequestEnvironmentInfo` returns an `InvalidParameterValue` error.
Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
3611 3612 3613 3614 3615 3616 3617 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3611 class RequestEnvironmentInfoMessage < Struct.new( :environment_id, :environment_name, :info_type) SENSITIVE = [] include Aws::Structure end |
#info_type ⇒ String
The type of information to request.
3611 3612 3613 3614 3615 3616 3617 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3611 class RequestEnvironmentInfoMessage < Struct.new( :environment_id, :environment_name, :info_type) SENSITIVE = [] include Aws::Structure end |