Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( DisabledCmd = &cobra.Command{ Use: "disabled", Short: "disables the versioning configuration for the target bucket", SilenceUsage: false, SilenceErrors: true, Example: `# set the versioning configuration for bucket as disabled s3-manager versioning set disabled `, RunE: func(cmd *cobra.Command, args []string) (err error) { var rootOpts *rootopts.RootOptions svc, rootOpts, logger, confirmRunner = utils.PrepareConstants(cmd) versioningOpts.RootOptions = rootOpts if err := utils.CheckArgs(args, 0); err != nil { logger.Error(). Msg(err.Error()) return err } versioningOpts.DesiredState = "disabled" return aws.SetBucketVersioning(svc, versioningOpts, confirmRunner, logger) }, } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.