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 ==
.