Struct aws_sdk_quicksight::operation::update_dashboard_permissions::UpdateDashboardPermissionsInput
source · #[non_exhaustive]pub struct UpdateDashboardPermissionsInput {
pub aws_account_id: Option<String>,
pub dashboard_id: Option<String>,
pub grant_permissions: Option<Vec<ResourcePermission>>,
pub revoke_permissions: Option<Vec<ResourcePermission>>,
pub grant_link_permissions: Option<Vec<ResourcePermission>>,
pub revoke_link_permissions: Option<Vec<ResourcePermission>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID of the Amazon Web Services account that contains the dashboard whose permissions you're updating.
dashboard_id: Option<String>The ID for the dashboard.
grant_permissions: Option<Vec<ResourcePermission>>The permissions that you want to grant on this resource.
revoke_permissions: Option<Vec<ResourcePermission>>The permissions that you want to revoke from this resource.
grant_link_permissions: Option<Vec<ResourcePermission>>Grants link permissions to all users in a defined namespace.
revoke_link_permissions: Option<Vec<ResourcePermission>>Revokes link permissions from all users in a defined namespace.
Implementations§
source§impl UpdateDashboardPermissionsInput
impl UpdateDashboardPermissionsInput
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that contains the dashboard whose permissions you're updating.
sourcepub fn dashboard_id(&self) -> Option<&str>
pub fn dashboard_id(&self) -> Option<&str>
The ID for the dashboard.
sourcepub fn grant_permissions(&self) -> &[ResourcePermission]
pub fn grant_permissions(&self) -> &[ResourcePermission]
The permissions that you want to grant on this resource.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .grant_permissions.is_none().
sourcepub fn revoke_permissions(&self) -> &[ResourcePermission]
pub fn revoke_permissions(&self) -> &[ResourcePermission]
The permissions that you want to revoke from this resource.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .revoke_permissions.is_none().
sourcepub fn grant_link_permissions(&self) -> &[ResourcePermission]
pub fn grant_link_permissions(&self) -> &[ResourcePermission]
Grants link permissions to all users in a defined namespace.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .grant_link_permissions.is_none().
sourcepub fn revoke_link_permissions(&self) -> &[ResourcePermission]
pub fn revoke_link_permissions(&self) -> &[ResourcePermission]
Revokes link permissions from all users in a defined namespace.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .revoke_link_permissions.is_none().
source§impl UpdateDashboardPermissionsInput
impl UpdateDashboardPermissionsInput
sourcepub fn builder() -> UpdateDashboardPermissionsInputBuilder
pub fn builder() -> UpdateDashboardPermissionsInputBuilder
Creates a new builder-style object to manufacture UpdateDashboardPermissionsInput.
Trait Implementations§
source§impl Clone for UpdateDashboardPermissionsInput
impl Clone for UpdateDashboardPermissionsInput
source§fn clone(&self) -> UpdateDashboardPermissionsInput
fn clone(&self) -> UpdateDashboardPermissionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateDashboardPermissionsInput
impl PartialEq for UpdateDashboardPermissionsInput
source§fn eq(&self, other: &UpdateDashboardPermissionsInput) -> bool
fn eq(&self, other: &UpdateDashboardPermissionsInput) -> bool
self and other values to be equal, and is used
by ==.