Documentation
¶
Overview ¶
Package diff provides the SSM Parameter Store diff command for comparing parameter versions.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type JSONOutput ¶
type JSONOutput struct {
OldName string `json:"oldName"`
OldVersion int64 `json:"oldVersion"`
OldValue string `json:"oldValue"`
NewName string `json:"newName"`
NewVersion int64 `json:"newVersion"`
NewValue string `json:"newValue"`
Identical bool `json:"identical"`
Diff string `json:"diff,omitempty"`
}
JSONOutput represents the JSON output structure for the diff command.
type Options ¶
type Options struct {
Spec1 *paramversion.Spec
Spec2 *paramversion.Spec
ParseJSON bool
NoPager bool
Output output.Format
}
Options holds the options for the diff command.
Click to show internal directories.
Click to hide internal directories.