1 Respuesta
- Más nuevo
- Más votos
- Más comentarios
1
LoadDefaultConfig will accept any number of the LoadOptions (With...) functions as arguments. You should be able to do:
cfg, err := config.LoadDefaultConfig(context.TODO(), config.WithSharedConfigProfile("saml"), config.WithRegion("us-east-1"))
There's an example here: https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/config#example-package-Custom_config.
respondido hace 4 años
Contenido relevante
preguntada hace un año
preguntada hace 9 meses
preguntada hace un mes

Ooooh right how could I miss this! Thanks.