pub struct ObjectACLResult {
pub bucket: Output<String>,
pub object: Output<String>,
pub predefined_acl: Output<Option<String>>,
pub role_entities: Output<Vec<String>>,
}
Fields§
§bucket: Output<String>
The name of the bucket the object is stored in.
object: Output<String>
The name of the object to apply the acl to.
predefined_acl: Output<Option<String>>
The “canned” predefined ACL to apply. Must be set if role_entity
is not.
role_entities: Output<Vec<String>>
List of role/entity pairs in the form ROLE:entity
. See GCS Object ACL documentation for more details.
Must be set if predefined_acl
is not.
Auto Trait Implementations§
impl Freeze for ObjectACLResult
impl RefUnwindSafe for ObjectACLResult
impl Send for ObjectACLResult
impl Sync for ObjectACLResult
impl Unpin for ObjectACLResult
impl UnwindSafe for ObjectACLResult
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