Module Values.AwsS3BucketBucketVersioningConfigurationSource

Describes the versioning state of an S3 bucket.

Sourcetype nonrec t = {
  1. isMfaDeleteEnabled : Boolean.t option;
    (*

    Specifies whether MFA delete is currently enabled in the S3 bucket versioning configuration. If the S3 bucket was never configured with MFA delete, then this attribute is not included.

    *)
  2. status : NonEmptyString.t option;
    (*

    The versioning status of the S3 bucket. Valid values are Enabled or Suspended.

    *)
}
Sourceval make : ?isMfaDeleteEnabled:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t