pub struct BucketAccessControlResult {
pub bucket: Output<String>,
pub domain: Output<String>,
pub email: Output<String>,
pub entity: Output<String>,
pub role: Output<Option<String>>,
}
Fields§
§bucket: Output<String>
The name of the bucket.
domain: Output<String>
The domain associated with the entity.
email: Output<String>
The email address associated with the entity.
entity: Output<String>
The entity holding the permission, in one of the following forms: user-userId user-email group-groupId group-email domain-domain project-team-projectId allUsers allAuthenticatedUsers Examples: The user liz@example.com would be user-liz@example.com. The group example@googlegroups.com would be group-example@googlegroups.com. To refer to all members of the Google Apps for Business domain example.com, the entity would be domain-example.com.
role: Output<Option<String>>
The access permission for the entity.
Possible values are: OWNER
, READER
, WRITER
.
Auto Trait Implementations§
impl Freeze for BucketAccessControlResult
impl RefUnwindSafe for BucketAccessControlResult
impl Send for BucketAccessControlResult
impl Sync for BucketAccessControlResult
impl Unpin for BucketAccessControlResult
impl UnwindSafe for BucketAccessControlResult
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