Header menu logo UnionConfig

SsmOperations Type

Operations for interacting with a parameter store. Consumers provide an implementation (e.g., backed by AWS SSM).

Record fields

Record Field Description

DeleteParameter

Full Usage: DeleteParameter

Field type: string -> Result<unit, string>

Delete a parameter. Returns Ok if deleted or absent.

Field type: string -> Result<unit, string>

GetParameter

Full Usage: GetParameter

Field type: string -> string option

Get a single parameter value. Returns None if not found.

Field type: string -> string option

GetParametersByPath

Full Usage: GetParametersByPath

Field type: string -> (string * string) list

Get all parameters under a path prefix. Returns (path, value) pairs.

Field type: string -> (string * string) list

SetParameter

Full Usage: SetParameter

Field type: string -> string -> bool -> Result<unit, string>

Set a parameter value. isSecure indicates SecureString storage.

Field type: string -> string -> bool -> Result<unit, string>

Type something to start searching.