pub struct DeleteTargetRequest {
pub force_unsubscribe_all: Option<bool>,
pub target_address: String,
}
Fields§
§force_unsubscribe_all: Option<bool>
A Boolean value that can be used to delete all associations with this SNS topic. The default value is FALSE. If set to TRUE, all associations between that target and every notification rule in your AWS account are deleted.
target_address: String
The Amazon Resource Name (ARN) of the SNS topic to delete.
Trait Implementations§
Source§impl Clone for DeleteTargetRequest
impl Clone for DeleteTargetRequest
Source§fn clone(&self) -> DeleteTargetRequest
fn clone(&self) -> DeleteTargetRequest
Returns a duplicate 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 DeleteTargetRequest
impl Debug for DeleteTargetRequest
Source§impl Default for DeleteTargetRequest
impl Default for DeleteTargetRequest
Source§fn default() -> DeleteTargetRequest
fn default() -> DeleteTargetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteTargetRequest
impl PartialEq for DeleteTargetRequest
Source§impl Serialize for DeleteTargetRequest
impl Serialize for DeleteTargetRequest
impl StructuralPartialEq for DeleteTargetRequest
Auto Trait Implementations§
impl Freeze for DeleteTargetRequest
impl RefUnwindSafe for DeleteTargetRequest
impl Send for DeleteTargetRequest
impl Sync for DeleteTargetRequest
impl Unpin for DeleteTargetRequest
impl UnwindSafe for DeleteTargetRequest
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