Struct aws_sdk_grafana::input::ListPermissionsInput
source · [−]#[non_exhaustive]pub struct ListPermissionsInput { /* private fields */ }
Implementations
sourceimpl ListPermissionsInput
impl ListPermissionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPermissions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPermissions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListPermissions
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListPermissionsInput
.
sourceimpl ListPermissionsInput
impl ListPermissionsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to include in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token to use when requesting the next set of results. You received this token from a previous ListPermissions
operation.
sourcepub fn user_type(&self) -> Option<&UserType>
pub fn user_type(&self) -> Option<&UserType>
(Optional) If you specify SSO_USER
, then only the permissions of Amazon Web Services SSO users are returned. If you specify SSO_GROUP
, only the permissions of Amazon Web Services SSO groups are returned.
sourcepub fn user_id(&self) -> Option<&str>
pub fn user_id(&self) -> Option<&str>
(Optional) Limits the results to only the user that matches this ID.
sourcepub fn group_id(&self) -> Option<&str>
pub fn group_id(&self) -> Option<&str>
(Optional) Limits the results to only the group that matches this ID.
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace to list permissions for. This parameter is required.
Trait Implementations
sourceimpl Clone for ListPermissionsInput
impl Clone for ListPermissionsInput
sourcefn clone(&self) -> ListPermissionsInput
fn clone(&self) -> ListPermissionsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListPermissionsInput
impl Debug for ListPermissionsInput
sourceimpl PartialEq<ListPermissionsInput> for ListPermissionsInput
impl PartialEq<ListPermissionsInput> for ListPermissionsInput
sourcefn eq(&self, other: &ListPermissionsInput) -> bool
fn eq(&self, other: &ListPermissionsInput) -> bool
impl StructuralPartialEq for ListPermissionsInput
Auto Trait Implementations
impl RefUnwindSafe for ListPermissionsInput
impl Send for ListPermissionsInput
impl Sync for ListPermissionsInput
impl Unpin for ListPermissionsInput
impl UnwindSafe for ListPermissionsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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