Struct aws_sdk_rust::aws::s3::admin::AdminRequest [] [src]

pub struct AdminRequest {
    pub method: Option<String>,
    pub admin_path: Option<String>,
    pub path_options: Option<String>,
    pub uid: Option<String>,
    pub bucket: Option<String>,
    pub object: Option<String>,
    pub params: Params,
    pub endpoint: Option<Endpoint>,
    pub access_key: Option<String>,
    pub secret_key: Option<String>,
    pub format: Option<AdminOutputType>,
}

Admin request for Ceph RGW Admin

Fields

Defaults to GET

Specify the path using the default 'admin'. For example, admin/bucket etc.

Allows for speacial path option that does NOT have a value but only a key like admin/user?quota where you would admin/user in admin_path and quota in path_options.

User's ID

Name of bucket

Name of Object

Parameters used in the query string

Endpoint that can override the default

Access key ID

Secret key ID

Output format (JSON or XML). Default is JSON

Trait Implementations

impl Debug for AdminRequest
[src]

Formats the value using the given formatter.

impl Clone for AdminRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AdminRequest
[src]

Returns the "default value" for a type. Read more