This message was deleted.
# typescript
s
This message was deleted.
l
Hello @big-notebook-65054, you are right that you have to use the
EnvironmentAllSetting[]
field. Every setting is of structure:
Copy code
{
   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.:
Copy code
{
   namespace: "aws:elb:listener",
   name: "ListenerProtocol",
   value: "TCP"
}
Source: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html#command-options-general-elblistener
b
Thanks @limited-rainbow-51650! This is super helpful.