wasmio-aws-types 0.0.2

AWS Types with serde for wasmio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use derivative::Derivative;
use derive_builder::Builder;
use serde::{Deserialize, Serialize};

/// Container for all (if there are any) keys between Prefix and the next
/// occurrence of the string specified by a delimiter. CommonPrefixes lists keys
/// that act like subdirectories in the directory specified by Prefix. For
/// example, if the prefix is notes/ and the delimiter is a slash (/) as in
/// notes/summer/july, the common prefix is notes/summer/.
#[derive(Derivative, Default, Builder, Serialize, Deserialize)]
#[derivative(Debug)]
#[builder(pattern = "owned", setter(into), default)]
#[serde(rename_all = "PascalCase")]
pub struct CommonPrefix {
    /// Container for the specified common prefix.
    pub prefix: Option<String>,
}