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.