#[non_exhaustive]pub struct UpdateFolderPermissionsInput {
pub aws_account_id: Option<String>,
pub folder_id: Option<String>,
pub grant_permissions: Option<Vec<ResourcePermission>>,
pub revoke_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 for the Amazon Web Services account that contains the folder to update.
folder_id: Option<String>The ID of the folder.
grant_permissions: Option<Vec<ResourcePermission>>The permissions that you want to grant on a resource.
revoke_permissions: Option<Vec<ResourcePermission>>The permissions that you want to revoke from a resource.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFolderPermissions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateFolderPermissions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateFolderPermissions>
Creates a new builder-style object to manufacture UpdateFolderPermissionsInput
The ID for the Amazon Web Services account that contains the folder to update.
The permissions that you want to grant on a resource.
The permissions that you want to revoke from a resource.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for UpdateFolderPermissionsInput
impl Sync for UpdateFolderPermissionsInput
impl Unpin for UpdateFolderPermissionsInput
impl UnwindSafe for UpdateFolderPermissionsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more