Describe Configuration Options
| elasticbeanstalk_describe_configuration_options | R Documentation |
Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution stack defines¶
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.
Usage¶
elasticbeanstalk_describe_configuration_options(ApplicationName,
TemplateName, EnvironmentName, SolutionStackName, PlatformArn, Options)
Arguments¶
ApplicationNameThe 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.
TemplateNameThe name of the configuration template whose configuration options you want to describe.
EnvironmentNameThe name of the environment whose configuration options you want to describe.
SolutionStackNameThe name of the solution stack whose configuration options you want to describe.
PlatformArnThe ARN of the custom platform.
OptionsIf specified, restricts the descriptions to only the specified options.
Value¶
A list with the following syntax:
list(
SolutionStackName = "string",
PlatformArn = "string",
Options = list(
list(
Namespace = "string",
Name = "string",
DefaultValue = "string",
ChangeSeverity = "string",
UserDefined = TRUE|FALSE,
ValueType = "Scalar"|"List",
ValueOptions = list(
"string"
),
MinValue = 123,
MaxValue = 123,
MaxLength = 123,
Regex = list(
Pattern = "string",
Label = "string"
)
)
)
)
Request syntax¶
svc$describe_configuration_options(
ApplicationName = "string",
TemplateName = "string",
EnvironmentName = "string",
SolutionStackName = "string",
PlatformArn = "string",
Options = list(
list(
ResourceName = "string",
Namespace = "string",
OptionName = "string"
)
)
)