Also came up with an approach for dealing with commands that will probably work with contexts
12 lines
144 B
Go
12 lines
144 B
Go
package models
|
|
|
|
type SSMParameters struct {
|
|
Items []SSMParameter
|
|
NextToken string
|
|
}
|
|
|
|
type SSMParameter struct {
|
|
Name string
|
|
Value string
|
|
}
|