Documentation
¶
Overview ¶
Package paramtype maps between the provider-neutral domain.ValueType and the AWS SSM Parameter Store type names ("String", "SecureString", "StringList") used in CLI output and in the --type flag. It keeps the SSM-specific display and parsing concerns in the param CLI layer so the usecases carry no AWS type.
Index ¶
Constants ¶
View Source
const ( String = "String" SecureString = "SecureString" StringList = "StringList" )
SSM parameter type names as displayed by the CLI and accepted by --type.
Variables ¶
This section is empty.
Functions ¶
func Display ¶
Display maps a domain.ValueType to its SSM type name for output. It preserves the historical byte-for-byte rendering:
- domain.ValueTypePlaintext -> "String"
- domain.ValueTypeSecret -> "SecureString"
- domain.ValueTypeList -> "StringList"
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.