Module Values.GetBackendStorageResourceConfigSource

The details for a backend storage resource.

Sourcetype nonrec t = {
  1. bucketName : string option;
    (*

    The name of the S3 bucket.

    *)
  2. imported : bool option;
    (*

    Returns True if the storage resource has been imported.

    *)
  3. permissions : BackendStoragePermissions.t option;
    (*

    The authorization configuration for the storage S3 bucket.

    *)
  4. serviceName : ServiceName.t option;
    (*

    The name of the storage service.

    *)
}
Sourceval make : ?bucketName:??? -> ?imported:??? -> ?permissions:??? -> ?serviceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `String of string | `Structure of (string * [> `List of [> `Enum of string ] list ]) list ]) 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