Registry /
cloud / aws-aws-sdk-go-v2-service-ssm
Package ssm provides the AWS Systems Manager client for Go.
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
github.com/aws/aws-sdk-go-v2/service/ssm
Creates an SSM client and retrieves a parameter.
package main
import (
"context"
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/service/ssm"
)
func main() {
cfg, _ := config.LoadDefaultConfig(context.TODO())
client := ssm.NewFromConfig(cfg)
params, _ := client.GetParameter(context.TODO(), &ssm.GetParameterInput{Name: nil})
_ = params
}
Debug
Known footguns
No known footguns recorded.
Upgrade
Version history
Breaking-change detection hasn't run for this library yet.
Audit
Security & dependencies
CVE tracking and dependency tree are planned for a later release.