Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
func NewManager ¶
func NewManager(opts *NewManagerOpts) (*Manager, error)
func (*Manager) DeleteCredentials ¶
func (*Manager) ReadCredentials ¶
type NewManagerOpts ¶
type NewManagerOpts struct {
Region, AccessKey, SecretKey, SecretPrefix string
Logger log.Logger
Role credentials.Role
}
type SecretsManagerIface ¶
type SecretsManagerIface interface {
GetSecretValue(ctx context.Context, params *secretsmanager.GetSecretValueInput, optFns ...func(*secretsmanager.Options)) (*secretsmanager.GetSecretValueOutput, error)
CreateSecret(ctx context.Context, params *secretsmanager.CreateSecretInput, optFns ...func(*secretsmanager.Options)) (*secretsmanager.CreateSecretOutput, error)
DeleteSecret(ctx context.Context, params *secretsmanager.DeleteSecretInput, optFns ...func(*secretsmanager.Options)) (*secretsmanager.DeleteSecretOutput, error)
}
Click to show internal directories.
Click to hide internal directories.