pub struct BatchDeleteConnectionRequest {
pub catalog_id: Option<String>,
pub connection_name_list: Vec<String>,
}
Fields§
§catalog_id: Option<String>
The ID of the Data Catalog in which the connections reside. If none is provided, the AWS account ID is used by default.
connection_name_list: Vec<String>
A list of names of the connections to delete.
Trait Implementations§
Source§impl Clone for BatchDeleteConnectionRequest
impl Clone for BatchDeleteConnectionRequest
Source§fn clone(&self) -> BatchDeleteConnectionRequest
fn clone(&self) -> BatchDeleteConnectionRequest
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 BatchDeleteConnectionRequest
impl Debug for BatchDeleteConnectionRequest
Source§impl Default for BatchDeleteConnectionRequest
impl Default for BatchDeleteConnectionRequest
Source§fn default() -> BatchDeleteConnectionRequest
fn default() -> BatchDeleteConnectionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchDeleteConnectionRequest
impl PartialEq for BatchDeleteConnectionRequest
Source§fn eq(&self, other: &BatchDeleteConnectionRequest) -> bool
fn eq(&self, other: &BatchDeleteConnectionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchDeleteConnectionRequest
Auto Trait Implementations§
impl Freeze for BatchDeleteConnectionRequest
impl RefUnwindSafe for BatchDeleteConnectionRequest
impl Send for BatchDeleteConnectionRequest
impl Sync for BatchDeleteConnectionRequest
impl Unpin for BatchDeleteConnectionRequest
impl UnwindSafe for BatchDeleteConnectionRequest
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