Class: Aws::ElasticBeanstalk::Types::DescribeEnvironmentResourcesMessage

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

Overview

Request to describe the resources in an environment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#environment_idString

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.

Returns:

  • (String)


1894
1895
1896
1897
1898
1899
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1894

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

#environment_nameString

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.

Returns:

  • (String)


1894
1895
1896
1897
1898
1899
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 1894

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