pub struct ListConnectionsInput {
pub host_arn_filter: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub provider_type_filter: Option<String>,
}Fields§
§host_arn_filter: Option<String>Filters the list of connections to those associated with a specified host.
max_results: Option<i64>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value.
next_token: Option<String>The token that was returned from the previous ListConnections call, which can be used to return the next set of connections in the list.
provider_type_filter: Option<String>Filters the list of connections to those associated with a specified provider, such as Bitbucket.
Trait Implementations§
Source§impl Clone for ListConnectionsInput
impl Clone for ListConnectionsInput
Source§fn clone(&self) -> ListConnectionsInput
fn clone(&self) -> ListConnectionsInput
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 ListConnectionsInput
impl Debug for ListConnectionsInput
Source§impl Default for ListConnectionsInput
impl Default for ListConnectionsInput
Source§fn default() -> ListConnectionsInput
fn default() -> ListConnectionsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListConnectionsInput
impl PartialEq for ListConnectionsInput
Source§impl Serialize for ListConnectionsInput
impl Serialize for ListConnectionsInput
impl StructuralPartialEq for ListConnectionsInput
Auto Trait Implementations§
impl Freeze for ListConnectionsInput
impl RefUnwindSafe for ListConnectionsInput
impl Send for ListConnectionsInput
impl Sync for ListConnectionsInput
impl Unpin for ListConnectionsInput
impl UnwindSafe for ListConnectionsInput
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