Struct aws_sdk_codedeploy::operation::list_on_premises_instances::ListOnPremisesInstancesOutput
source · #[non_exhaustive]pub struct ListOnPremisesInstancesOutput {
pub instance_names: Option<Vec<String>>,
pub next_token: Option<String>,
/* private fields */
}Expand description
Represents the output of the list on-premises instances 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.instance_names: Option<Vec<String>>The list of matching on-premises instance names.
next_token: Option<String>If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list on-premises instances call to return the next set of on-premises instances in the list.
Implementations§
source§impl ListOnPremisesInstancesOutput
impl ListOnPremisesInstancesOutput
sourcepub fn instance_names(&self) -> &[String]
pub fn instance_names(&self) -> &[String]
The list of matching on-premises instance names.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .instance_names.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list on-premises instances call to return the next set of on-premises instances in the list.
source§impl ListOnPremisesInstancesOutput
impl ListOnPremisesInstancesOutput
sourcepub fn builder() -> ListOnPremisesInstancesOutputBuilder
pub fn builder() -> ListOnPremisesInstancesOutputBuilder
Creates a new builder-style object to manufacture ListOnPremisesInstancesOutput.
Trait Implementations§
source§impl Clone for ListOnPremisesInstancesOutput
impl Clone for ListOnPremisesInstancesOutput
source§fn clone(&self) -> ListOnPremisesInstancesOutput
fn clone(&self) -> ListOnPremisesInstancesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListOnPremisesInstancesOutput
impl PartialEq for ListOnPremisesInstancesOutput
source§fn eq(&self, other: &ListOnPremisesInstancesOutput) -> bool
fn eq(&self, other: &ListOnPremisesInstancesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListOnPremisesInstancesOutput
impl RequestId for ListOnPremisesInstancesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListOnPremisesInstancesOutput
Auto Trait Implementations§
impl Freeze for ListOnPremisesInstancesOutput
impl RefUnwindSafe for ListOnPremisesInstancesOutput
impl Send for ListOnPremisesInstancesOutput
impl Sync for ListOnPremisesInstancesOutput
impl Unpin for ListOnPremisesInstancesOutput
impl UnwindSafe for ListOnPremisesInstancesOutput
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> 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