#[non_exhaustive]pub struct UpdateAnalysisPermissionsInput { /* private fields */ }
Implementations§
source§impl UpdateAnalysisPermissionsInput
impl UpdateAnalysisPermissionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAnalysisPermissions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateAnalysisPermissions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateAnalysisPermissions
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateAnalysisPermissionsInput
.
source§impl UpdateAnalysisPermissionsInput
impl UpdateAnalysisPermissionsInput
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 analysis whose permissions you're updating. You must be using the Amazon Web Services account that the analysis is in.
sourcepub fn analysis_id(&self) -> Option<&str>
pub fn analysis_id(&self) -> Option<&str>
The ID of the analysis whose permissions you're updating. The ID is part of the analysis URL.
sourcepub fn grant_permissions(&self) -> Option<&[ResourcePermission]>
pub fn grant_permissions(&self) -> Option<&[ResourcePermission]>
A structure that describes the permissions to add and the principal to add them to.
sourcepub fn revoke_permissions(&self) -> Option<&[ResourcePermission]>
pub fn revoke_permissions(&self) -> Option<&[ResourcePermission]>
A structure that describes the permissions to remove and the principal to remove them from.
Trait Implementations§
source§impl Clone for UpdateAnalysisPermissionsInput
impl Clone for UpdateAnalysisPermissionsInput
source§fn clone(&self) -> UpdateAnalysisPermissionsInput
fn clone(&self) -> UpdateAnalysisPermissionsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<UpdateAnalysisPermissionsInput> for UpdateAnalysisPermissionsInput
impl PartialEq<UpdateAnalysisPermissionsInput> for UpdateAnalysisPermissionsInput
source§fn eq(&self, other: &UpdateAnalysisPermissionsInput) -> bool
fn eq(&self, other: &UpdateAnalysisPermissionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.