pub struct GetBucketObjectsResult {
pub bucket: Output<String>,
pub common_prefixes: Output<Vec<String>>,
pub delimiter: Output<Option<String>>,
pub encoding_type: Output<Option<String>>,
pub fetch_owner: Output<Option<bool>>,
pub id: Output<String>,
pub keys: Output<Vec<String>>,
pub max_keys: Output<Option<i32>>,
pub owners: Output<Vec<String>>,
pub prefix: Output<Option<String>>,
pub start_after: Output<Option<String>>,
}
Fields§
§bucket: Output<String>
§common_prefixes: Output<Vec<String>>
List of any keys between prefix
and the next occurrence of delimiter
(i.e., similar to subdirectories of the prefix
“directory”); the list is only returned when you specify delimiter
delimiter: Output<Option<String>>
§encoding_type: Output<Option<String>>
§fetch_owner: Output<Option<bool>>
§id: Output<String>
The provider-assigned unique ID for this managed resource.
keys: Output<Vec<String>>
List of strings representing object keys
max_keys: Output<Option<i32>>
§owners: Output<Vec<String>>
List of strings representing object owner IDs (see fetch_owner
above)
prefix: Output<Option<String>>
§start_after: Output<Option<String>>
Auto Trait Implementations§
impl Freeze for GetBucketObjectsResult
impl RefUnwindSafe for GetBucketObjectsResult
impl Send for GetBucketObjectsResult
impl Sync for GetBucketObjectsResult
impl Unpin for GetBucketObjectsResult
impl UnwindSafe for GetBucketObjectsResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more