Documentation ¶
Overview ¶
Package acc implements github.com/golang/crypto/acme/autocert.Cache Copyright 2017 Reed O'Brien
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type S3 ¶
type S3 struct {
// contains filtered or unexported fields
}
S3 implements autocert.Cache using an S3 bucket for persistence. The bucket must already exist.
type S3API ¶
type S3API interface { GetObjectWithContext(aws.Context, *s3.GetObjectInput, ...request.Option) (*s3.GetObjectOutput, error) PutObjectWithContext(aws.Context, *s3.PutObjectInput, ...request.Option) (*s3.PutObjectOutput, error) DeleteObjectWithContext(aws.Context, *s3.DeleteObjectInput, ...request.Option) (*s3.DeleteObjectOutput, error) }
S3API implements the bits of aws-sdk-go `s3iface.S3API` that are needed to implmement `autocert.Cache`.
Click to show internal directories.
Click to hide internal directories.