1**To view configurations settings for an environment**
2
3The following command retrieves configuration settings for an environment named ``my-env``::
4
5  aws elasticbeanstalk describe-configuration-settings --environment-name my-env --application-name my-app
6
7Output (abbreviated)::
8
9  {
10      "ConfigurationSettings": [
11          {
12              "ApplicationName": "my-app",
13              "EnvironmentName": "my-env",
14              "Description": "Environment created from the EB CLI using \"eb create\"",
15              "DeploymentStatus": "deployed",
16              "DateCreated": "2015-08-13T19:16:25Z",
17              "OptionSettings": [
18                  {
19                      "OptionName": "Availability Zones",
20                      "ResourceName": "AWSEBAutoScalingGroup",
21                      "Namespace": "aws:autoscaling:asg",
22                      "Value": "Any"
23                  },
24                  {
25                      "OptionName": "Cooldown",
26                      "ResourceName": "AWSEBAutoScalingGroup",
27                      "Namespace": "aws:autoscaling:asg",
28                      "Value": "360"
29                  },
30                  ...
31                  {
32                      "OptionName": "ConnectionDrainingTimeout",
33                      "ResourceName": "AWSEBLoadBalancer",
34                      "Namespace": "aws:elb:policies",
35                      "Value": "20"
36                  },
37                  {
38                      "OptionName": "ConnectionSettingIdleTimeout",
39                      "ResourceName": "AWSEBLoadBalancer",
40                      "Namespace": "aws:elb:policies",
41                      "Value": "60"
42                  }
43              ],
44              "DateUpdated": "2015-08-13T23:30:07Z",
45              "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8"
46          }
47      ]
48  }
49
50For more information about namespaces and supported options, see `Option Values`_ in the *AWS Elastic Beanstalk Developer Guide*.
51
52.. _`Option Values`: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html
53