You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticBeanstalk::Types::DescribeConfigurationOptionsMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeConfigurationOptionsMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  application_name: "ApplicationName",
  template_name: "ConfigurationTemplateName",
  environment_name: "EnvironmentName",
  solution_stack_name: "SolutionStackName",
  platform_arn: "PlatformArn",
  options: [
    {
      resource_name: "ResourceName",
      namespace: "OptionNamespace",
      option_name: "ConfigurationOptionName",
    },
  ],
}

Result message containing a list of application version descriptions.

Instance Attribute Summary collapse

Instance Attribute Details

#application_nameString

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.

Returns:

  • (String)

    The name of the application associated with the configuration template or environment.

#environment_nameString

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

Returns:

  • (String)

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

#optionsArray<Types::OptionSpecification>

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

Returns:

#platform_arnString

The ARN of the custom platform.

Returns:

  • (String)

    The ARN of the custom platform.

#solution_stack_nameString

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

Returns:

  • (String)

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

#template_nameString

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

Returns:

  • (String)

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