pub struct ListOnPremisesInstancesInput {
pub next_token: Option<String>,
pub registration_status: Option<String>,
pub tag_filters: Option<Vec<TagFilter>>,
}Expand description
Represents the input of a ListOnPremisesInstances operation.
Fields§
§next_token: Option<String>An identifier returned from the previous list on-premises instances call. It can be used to return the next set of on-premises instances in the list.
registration_status: Option<String>The registration status of the on-premises instances:
-
Deregistered: Include deregistered on-premises instances in the resulting list. -
Registered: Include registered on-premises instances in the resulting list.
tag_filters: Option<Vec<TagFilter>>The on-premises instance tags that are used to restrict the on-premises instance names returned.
Trait Implementations§
Source§impl Clone for ListOnPremisesInstancesInput
impl Clone for ListOnPremisesInstancesInput
Source§fn clone(&self) -> ListOnPremisesInstancesInput
fn clone(&self) -> ListOnPremisesInstancesInput
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 ListOnPremisesInstancesInput
impl Debug for ListOnPremisesInstancesInput
Source§impl Default for ListOnPremisesInstancesInput
impl Default for ListOnPremisesInstancesInput
Source§fn default() -> ListOnPremisesInstancesInput
fn default() -> ListOnPremisesInstancesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListOnPremisesInstancesInput
impl PartialEq for ListOnPremisesInstancesInput
Source§fn eq(&self, other: &ListOnPremisesInstancesInput) -> bool
fn eq(&self, other: &ListOnPremisesInstancesInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListOnPremisesInstancesInput
Auto Trait Implementations§
impl Freeze for ListOnPremisesInstancesInput
impl RefUnwindSafe for ListOnPremisesInstancesInput
impl Send for ListOnPremisesInstancesInput
impl Sync for ListOnPremisesInstancesInput
impl Unpin for ListOnPremisesInstancesInput
impl UnwindSafe for ListOnPremisesInstancesInput
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