#[non_exhaustive]pub struct RemovePermissionInput { /* private fields */ }Implementations§
source§impl RemovePermissionInput
impl RemovePermissionInput
sourcepub fn statement_id(&self) -> Option<&str>
pub fn statement_id(&self) -> Option<&str>
The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.
sourcepub fn remove_all_permissions(&self) -> Option<bool>
pub fn remove_all_permissions(&self) -> Option<bool>
Specifies whether to remove all permissions.
sourcepub fn event_bus_name(&self) -> Option<&str>
pub fn event_bus_name(&self) -> Option<&str>
The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.
source§impl RemovePermissionInput
impl RemovePermissionInput
sourcepub fn builder() -> RemovePermissionInputBuilder
pub fn builder() -> RemovePermissionInputBuilder
Creates a new builder-style object to manufacture RemovePermissionInput.
source§impl RemovePermissionInput
impl RemovePermissionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RemovePermission, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<RemovePermission, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RemovePermission>
Trait Implementations§
source§impl Clone for RemovePermissionInput
impl Clone for RemovePermissionInput
source§fn clone(&self) -> RemovePermissionInput
fn clone(&self) -> RemovePermissionInput
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 Debug for RemovePermissionInput
impl Debug for RemovePermissionInput
source§impl PartialEq<RemovePermissionInput> for RemovePermissionInput
impl PartialEq<RemovePermissionInput> for RemovePermissionInput
source§fn eq(&self, other: &RemovePermissionInput) -> bool
fn eq(&self, other: &RemovePermissionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RemovePermissionInput
Auto Trait Implementations§
impl RefUnwindSafe for RemovePermissionInput
impl Send for RemovePermissionInput
impl Sync for RemovePermissionInput
impl Unpin for RemovePermissionInput
impl UnwindSafe for RemovePermissionInput
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