#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateDashboardPermissionsInput
Implementations
sourceimpl Builder
impl Builder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the dashboard whose permissions you're updating.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the dashboard whose permissions you're updating.
sourcepub fn dashboard_id(self, input: impl Into<String>) -> Self
pub fn dashboard_id(self, input: impl Into<String>) -> Self
The ID for the dashboard.
sourcepub fn set_dashboard_id(self, input: Option<String>) -> Self
pub fn set_dashboard_id(self, input: Option<String>) -> Self
The ID for the dashboard.
sourcepub fn grant_permissions(self, input: ResourcePermission) -> Self
pub fn grant_permissions(self, input: ResourcePermission) -> Self
Appends an item to grant_permissions
.
To override the contents of this collection use set_grant_permissions
.
The permissions that you want to grant on this resource.
sourcepub fn set_grant_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
pub fn set_grant_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
The permissions that you want to grant on this resource.
sourcepub fn revoke_permissions(self, input: ResourcePermission) -> Self
pub fn revoke_permissions(self, input: ResourcePermission) -> Self
Appends an item to revoke_permissions
.
To override the contents of this collection use set_revoke_permissions
.
The permissions that you want to revoke from this resource.
sourcepub fn set_revoke_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
pub fn set_revoke_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
The permissions that you want to revoke from this resource.
sourcepub fn grant_link_permissions(self, input: ResourcePermission) -> Self
pub fn grant_link_permissions(self, input: ResourcePermission) -> Self
Appends an item to grant_link_permissions
.
To override the contents of this collection use set_grant_link_permissions
.
Grants link permissions to all users in a defined namespace.
sourcepub fn set_grant_link_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
pub fn set_grant_link_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
Grants link permissions to all users in a defined namespace.
sourcepub fn revoke_link_permissions(self, input: ResourcePermission) -> Self
pub fn revoke_link_permissions(self, input: ResourcePermission) -> Self
Appends an item to revoke_link_permissions
.
To override the contents of this collection use set_revoke_link_permissions
.
Revokes link permissions from all users in a defined namespace.
sourcepub fn set_revoke_link_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
pub fn set_revoke_link_permissions(
self,
input: Option<Vec<ResourcePermission>>
) -> Self
Revokes link permissions from all users in a defined namespace.
sourcepub fn build(self) -> Result<UpdateDashboardPermissionsInput, BuildError>
pub fn build(self) -> Result<UpdateDashboardPermissionsInput, BuildError>
Consumes the builder and constructs a UpdateDashboardPermissionsInput
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more