Property
Represents a micronaut property, which has a corresponding entry in micronaut's application.yml file, which is populated by an environment variable. Just a pair of the micronaut property name, and that corresponding env var name.
For example, this application.yaml:
airbyte:
destination:
foo-bar: ${FOO_BAR}Content copied to clipboard
Would be represented as Property("airbyte.destination.foo-bar", "FOO_BAR").