sparse-intern-71089
09/14/2022, 10:10 PMlimited-rainbow-51650
09/15/2022, 11:37 AMEnvironmentAllSetting[]
field. Every setting is of structure:
{
namespace: "<namespace>",
name: "<property name>",
value: "property value>"
}
You can find all the possible namespaces, property names, as well as property values if these are limited, in the AWS docs:
https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html
If you click on one of the namespaces in this doc, you are presented with a table. Each row in the table represents a possible `name`+`value` pair you can add as a settings object, e.g.:
{
namespace: "aws:elb:listener",
name: "ListenerProtocol",
value: "TCP"
}
Source: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html#command-options-general-elblistenerbig-notebook-65054
09/15/2022, 4:14 PM