pub struct GetBucketObjectsResult {
pub bucket: Output<String>,
pub bucket_objects: Output<Vec<GetBucketObjectsBucketObject>>,
pub id: Output<String>,
pub match_glob: Output<Option<String>>,
pub prefix: Output<Option<String>>,
}
Fields§
§bucket: Output<String>
§bucket_objects: Output<Vec<GetBucketObjectsBucketObject>>
A list of retrieved objects contained in the provided GCS bucket. Structure is defined below.
id: Output<String>
The provider-assigned unique ID for this managed resource.
match_glob: Output<Option<String>>
§prefix: 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