Class: Aws::ElasticBeanstalk::Types::DescribeEnvironmentResourcesMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::DescribeEnvironmentResourcesMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Request to describe the resources in an environment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_id ⇒ String
The ID of the environment to retrieve AWS resource usage data.
-
#environment_name ⇒ String
The name of the environment to retrieve AWS resource usage data.
Instance Attribute Details
#environment_id ⇒ String
The ID of the environment to retrieve AWS resource usage data.
Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
1894 1895 1896 1897 1898 1899 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1894 class DescribeEnvironmentResourcesMessage < Struct.new( :environment_id, :environment_name) SENSITIVE = [] include Aws::Structure end |
#environment_name ⇒ String
The name of the environment to retrieve AWS resource usage data.
Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns ‘MissingRequiredParameter` error.
1894 1895 1896 1897 1898 1899 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 1894 class DescribeEnvironmentResourcesMessage < Struct.new( :environment_id, :environment_name) SENSITIVE = [] include Aws::Structure end |