Struct aws_sdk_codedeploy::operation::list_on_premises_instances::ListOnPremisesInstancesInput
source · #[non_exhaustive]pub struct ListOnPremisesInstancesInput {
pub registration_status: Option<RegistrationStatus>,
pub tag_filters: Option<Vec<TagFilter>>,
pub next_token: Option<String>,
}Expand description
Represents the input of a ListOnPremisesInstances operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.registration_status: Option<RegistrationStatus>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.
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.
Implementations§
source§impl ListOnPremisesInstancesInput
impl ListOnPremisesInstancesInput
sourcepub fn registration_status(&self) -> Option<&RegistrationStatus>
pub fn registration_status(&self) -> Option<&RegistrationStatus>
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.
sourcepub fn tag_filters(&self) -> &[TagFilter]
pub fn tag_filters(&self) -> &[TagFilter]
The on-premises instance tags that are used to restrict the on-premises instance names returned.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tag_filters.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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.
source§impl ListOnPremisesInstancesInput
impl ListOnPremisesInstancesInput
sourcepub fn builder() -> ListOnPremisesInstancesInputBuilder
pub fn builder() -> ListOnPremisesInstancesInputBuilder
Creates a new builder-style object to manufacture ListOnPremisesInstancesInput.
Trait Implementations§
source§impl Clone for ListOnPremisesInstancesInput
impl Clone for ListOnPremisesInstancesInput
source§fn clone(&self) -> ListOnPremisesInstancesInput
fn clone(&self) -> ListOnPremisesInstancesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListOnPremisesInstancesInput
impl Debug for ListOnPremisesInstancesInput
source§impl PartialEq for ListOnPremisesInstancesInput
impl PartialEq for ListOnPremisesInstancesInput
source§fn eq(&self, other: &ListOnPremisesInstancesInput) -> bool
fn eq(&self, other: &ListOnPremisesInstancesInput) -> bool
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more