aws

package
v1.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 3, 2019 License: Apache-2.0 Imports: 25 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(params cloud.Params) (cloud.Provider, error)

New returns a new AWS provider

Types

type AuthChallenge

type AuthChallenge struct {
	Name    *string
	Params  map[string]*string
	Session *string
}

AuthChallenge is a congnito auth challenge

func (*AuthChallenge) Error

func (c *AuthChallenge) Error() string

type AuthToken

type AuthToken struct {
	keychain.AuthToken
}

AuthToken is an JWT AuthToken

func (*AuthToken) ID

func (t *AuthToken) ID() string

ID returns the token id

func (*AuthToken) Scope

func (t *AuthToken) Scope() []string

Scope returns the token scope

func (*AuthToken) Username

func (t *AuthToken) Username() string

Username returns the token username

type Provider

type Provider struct {
	// contains filtered or unexported fields
}

Provider is an AWS cloud provider

func (*Provider) Close

func (p *Provider) Close()

Close closes and cleans up the provider

func (*Provider) OpenObjectStore

func (p *Provider) OpenObjectStore(name string, params cloud.Params) (cloud.ObjectStore, error)

OpenObjectStore returns an instance to an S3 bucket

func (*Provider) OpenQueue

func (p *Provider) OpenQueue(name string, params cloud.Params) (cloud.Queue, error)

OpenQueue opens an SNS queue

func (*Provider) OpenUserPool

func (p *Provider) OpenUserPool(name string, params cloud.Params) (cloud.UserPool, error)

OpenUserPool returns a cognito user pool instance. This method takes the following required parameters:

client_id: the cognito client id
public_keys: base64 encoded json string, retrieved from:
	https://cognito-idp.<region>.amazonaws.com/<pool_id>/.well-known/jwks.json

func (*Provider) ProxyHTTP

func (p *Provider) ProxyHTTP(handler http.Handler) error

ProxyHTTP handles the lambda api gateway integration request

type User

type User struct {
	*cognitoidentityprovider.UserType
	// contains filtered or unexported fields
}

User is a cognito User

func (*User) Attributes

func (u *User) Attributes() sparks.StringMap

Attributes returns a map of user attributes

func (*User) Enabled

func (u *User) Enabled() bool

Enabled represents the user's status

func (*User) Groups

func (u *User) Groups() []string

Groups returns a list of groups the user belongs to

func (*User) Login

func (u *User) Login() string

Login returns the user login i.e. username

func (*User) Status added in v1.4.7

func (u *User) Status() string

Status returns the user status

type UserPool

type UserPool struct {
	// contains filtered or unexported fields
}

UserPool is a congnito UserPool

func (*UserPool) AuthenticateUser

func (p *UserPool) AuthenticateUser(username, password string) (cloud.AuthToken, error)

AuthenticateUser authenticates the user and returns an AuthToken

func (*UserPool) AuthorizeToken

func (p *UserPool) AuthorizeToken(tokenString string, scopes ...[]string) (cloud.AuthToken, error)

AuthorizeToken takes the signed JWT string and validates it returning an AuthToken

func (*UserPool) ChangeUserPassword

func (p *UserPool) ChangeUserPassword(username, current, proposed string) error

ChangeUserPassword changes the users password This method first attempt to authenticate the user to get a session token then it uses this token to perform the actual password change.

func (*UserPool) CreateUser

func (p *UserPool) CreateUser(username, password string, attributes map[string]string, options ...cloud.Params) (cloud.User, error)

CreateUser creates a new user

func (*UserPool) DeleteUser

func (p *UserPool) DeleteUser(username string) error

DeleteUser deletes a user record

func (*UserPool) DisableUser

func (p *UserPool) DisableUser(username string) error

DisableUser disables a user account

func (*UserPool) GetUser

func (p *UserPool) GetUser(username string) (cloud.User, error)

GetUser returns a user

func (*UserPool) UpdateUser

func (p *UserPool) UpdateUser(username string, attributes sparks.StringMap) error

UpdateUser updates a users attributes

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL