amazonka-elasticbeanstalk-2.0: Amazon Elastic Beanstalk SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Description

Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution stack defines. The description includes the values the options, their default values, and an indication of the required action on a running environment if an option value is changed.

Synopsis

Creating a Request

data DescribeConfigurationOptions Source #

Result message containing a list of application version descriptions.

See: newDescribeConfigurationOptions smart constructor.

Constructors

DescribeConfigurationOptions' 

Fields

  • applicationName :: Maybe Text

    The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.

  • environmentName :: Maybe Text

    The name of the environment whose configuration options you want to describe.

  • options :: Maybe [OptionSpecification]

    If specified, restricts the descriptions to only the specified options.

  • platformArn :: Maybe Text

    The ARN of the custom platform.

  • solutionStackName :: Maybe Text

    The name of the solution stack whose configuration options you want to describe.

  • templateName :: Maybe Text

    The name of the configuration template whose configuration options you want to describe.

Instances

Instances details
ToHeaders DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

ToPath DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

ToQuery DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

AWSRequest DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Generic DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Associated Types

type Rep DescribeConfigurationOptions :: Type -> Type #

Read DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Show DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

NFData DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Eq DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Hashable DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

type AWSResponse DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

type Rep DescribeConfigurationOptions Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

type Rep DescribeConfigurationOptions = D1 ('MetaData "DescribeConfigurationOptions" "Amazonka.ElasticBeanstalk.DescribeConfigurationOptions" "amazonka-elasticbeanstalk-2.0-HLGGuY0kjXTIKSbM7JuMHy" 'False) (C1 ('MetaCons "DescribeConfigurationOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "applicationName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "environmentName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [OptionSpecification])))) :*: (S1 ('MetaSel ('Just "platformArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "solutionStackName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "templateName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newDescribeConfigurationOptions :: DescribeConfigurationOptions Source #

Create a value of DescribeConfigurationOptions with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

DescribeConfigurationOptions, describeConfigurationOptions_applicationName - The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.

DescribeConfigurationOptions, describeConfigurationOptions_environmentName - The name of the environment whose configuration options you want to describe.

DescribeConfigurationOptions, describeConfigurationOptions_options - If specified, restricts the descriptions to only the specified options.

DescribeConfigurationOptions, describeConfigurationOptions_platformArn - The ARN of the custom platform.

DescribeConfigurationOptions, describeConfigurationOptions_solutionStackName - The name of the solution stack whose configuration options you want to describe.

DescribeConfigurationOptions, describeConfigurationOptions_templateName - The name of the configuration template whose configuration options you want to describe.

Request Lenses

describeConfigurationOptions_applicationName :: Lens' DescribeConfigurationOptions (Maybe Text) Source #

The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.

describeConfigurationOptions_environmentName :: Lens' DescribeConfigurationOptions (Maybe Text) Source #

The name of the environment whose configuration options you want to describe.

describeConfigurationOptions_options :: Lens' DescribeConfigurationOptions (Maybe [OptionSpecification]) Source #

If specified, restricts the descriptions to only the specified options.

describeConfigurationOptions_solutionStackName :: Lens' DescribeConfigurationOptions (Maybe Text) Source #

The name of the solution stack whose configuration options you want to describe.

describeConfigurationOptions_templateName :: Lens' DescribeConfigurationOptions (Maybe Text) Source #

The name of the configuration template whose configuration options you want to describe.

Destructuring the Response

data DescribeConfigurationOptionsResponse Source #

Describes the settings for a specified configuration set.

See: newDescribeConfigurationOptionsResponse smart constructor.

Constructors

DescribeConfigurationOptionsResponse' 

Fields

Instances

Instances details
Generic DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Read DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Show DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

NFData DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

Eq DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

type Rep DescribeConfigurationOptionsResponse Source # 
Instance details

Defined in Amazonka.ElasticBeanstalk.DescribeConfigurationOptions

type Rep DescribeConfigurationOptionsResponse = D1 ('MetaData "DescribeConfigurationOptionsResponse" "Amazonka.ElasticBeanstalk.DescribeConfigurationOptions" "amazonka-elasticbeanstalk-2.0-HLGGuY0kjXTIKSbM7JuMHy" 'False) (C1 ('MetaCons "DescribeConfigurationOptionsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ConfigurationOptionDescription])) :*: S1 ('MetaSel ('Just "platformArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "solutionStackName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeConfigurationOptionsResponse Source #

Create a value of DescribeConfigurationOptionsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

DescribeConfigurationOptions, describeConfigurationOptionsResponse_options - A list of ConfigurationOptionDescription.

DescribeConfigurationOptions, describeConfigurationOptionsResponse_platformArn - The ARN of the platform version.

DescribeConfigurationOptions, describeConfigurationOptionsResponse_solutionStackName - The name of the solution stack these configuration options belong to.

$sel:httpStatus:DescribeConfigurationOptionsResponse', describeConfigurationOptionsResponse_httpStatus - The response's http status code.

Response Lenses

describeConfigurationOptionsResponse_solutionStackName :: Lens' DescribeConfigurationOptionsResponse (Maybe Text) Source #

The name of the solution stack these configuration options belong to.