Documentation
¶
Overview ¶
Package s3 provides the data structures and logic necessary to enumerate and integrate AWS S3 resources.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EnumerateS3 ¶
EnumerateS3 retrieves all S3 buckets available to the caller and returns an EnumerateResourceReport struct. Non-fatal errors that occur during the execution of the `methodaws s3 enumerate` subcommand are included in the report, but the function will not return an error unless there is an issue retrieving the account ID.
func ExternalEnumerateS3 ¶ added in v0.0.13
func ExternalEnumerateS3(ctx context.Context, cfg aws.Config, bucketName string) methodaws.ExternalS3Report
ExternalEnumerateS3 attempts to enumerate a public facing S3 bucket with no credentials. If the bucket does not exist, it will return an empty report. If region is "all", it will attempt to enumerate the bucket in all regions.
Types ¶
type BucketObject ¶
type BucketObject struct { Name string `json:"name" yaml:"name"` Size int64 `json:"size" yaml:"size"` }
BucketObject contains the name and size (in bytes) of an object stored in an S3 bucket.
type LsResourceReport ¶
type LsResourceReport struct { Resources LsResources `json:"resources" yaml:"resources"` Errors []string `json:"errors" yaml:"errors"` }
LsResourceReport contains the resources discovered in an S3 bucket and any non-fatal errors that occurred during the execution of the `methodaws s3 ls` subcommand.
func LsS3Bucket ¶
LsS3Bucket retrieves the objects stored in an S3 bucket and returns an LsResourceReport struct
type LsResources ¶
type LsResources struct { S3BucketName *string `json:"name" yaml:"name"` BucketObjects []BucketObject `json:"objects" yaml:"objects"` }
LsResources contains the S3 bucket name and the objects stored in the bucket.