pub struct DefaultObjectACLResult {
pub bucket: Output<String>,
pub role_entities: Output<Vec<String>>,
}
Fields§
§bucket: Output<String>
The name of the bucket it applies to.
role_entities: Output<Vec<String>>
List of role/entity pairs in the form ROLE:entity
.
See GCS Object ACL documentation for more details.
Omitting the field is the same as providing an empty list.
Auto Trait Implementations§
impl Freeze for DefaultObjectACLResult
impl RefUnwindSafe for DefaultObjectACLResult
impl Send for DefaultObjectACLResult
impl Sync for DefaultObjectACLResult
impl Unpin for DefaultObjectACLResult
impl UnwindSafe for DefaultObjectACLResult
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