Struct aws_sdk_grafana::operation::update_permissions::builders::UpdatePermissionsInputBuilder
source · #[non_exhaustive]pub struct UpdatePermissionsInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePermissionsInput
.
Implementations§
source§impl UpdatePermissionsInputBuilder
impl UpdatePermissionsInputBuilder
sourcepub fn update_instruction_batch(self, input: UpdateInstruction) -> Self
pub fn update_instruction_batch(self, input: UpdateInstruction) -> Self
Appends an item to update_instruction_batch
.
To override the contents of this collection use set_update_instruction_batch
.
An array of structures that contain the permission updates to make.
sourcepub fn set_update_instruction_batch(
self,
input: Option<Vec<UpdateInstruction>>
) -> Self
pub fn set_update_instruction_batch( self, input: Option<Vec<UpdateInstruction>> ) -> Self
An array of structures that contain the permission updates to make.
sourcepub fn get_update_instruction_batch(&self) -> &Option<Vec<UpdateInstruction>>
pub fn get_update_instruction_batch(&self) -> &Option<Vec<UpdateInstruction>>
An array of structures that contain the permission updates to make.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace to update.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace to update.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace to update.
sourcepub fn build(self) -> Result<UpdatePermissionsInput, BuildError>
pub fn build(self) -> Result<UpdatePermissionsInput, BuildError>
Consumes the builder and constructs a UpdatePermissionsInput
.
source§impl UpdatePermissionsInputBuilder
impl UpdatePermissionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdatePermissionsOutput, SdkError<UpdatePermissionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdatePermissionsOutput, SdkError<UpdatePermissionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePermissionsInputBuilder
impl Clone for UpdatePermissionsInputBuilder
source§fn clone(&self) -> UpdatePermissionsInputBuilder
fn clone(&self) -> UpdatePermissionsInputBuilder
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 Default for UpdatePermissionsInputBuilder
impl Default for UpdatePermissionsInputBuilder
source§fn default() -> UpdatePermissionsInputBuilder
fn default() -> UpdatePermissionsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdatePermissionsInputBuilder> for UpdatePermissionsInputBuilder
impl PartialEq<UpdatePermissionsInputBuilder> for UpdatePermissionsInputBuilder
source§fn eq(&self, other: &UpdatePermissionsInputBuilder) -> bool
fn eq(&self, other: &UpdatePermissionsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePermissionsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for UpdatePermissionsInputBuilder
impl Send for UpdatePermissionsInputBuilder
impl Sync for UpdatePermissionsInputBuilder
impl Unpin for UpdatePermissionsInputBuilder
impl UnwindSafe for UpdatePermissionsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more