#[non_exhaustive]pub struct GetServerDetailsInput {
pub server_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.server_id: Option<String>The ID of the server.
next_token: Option<String> The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
max_results: Option<i32>The maximum number of items to include in the response. The maximum value is 100.
Implementations§
source§impl GetServerDetailsInput
impl GetServerDetailsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to include in the response. The maximum value is 100.
source§impl GetServerDetailsInput
impl GetServerDetailsInput
sourcepub fn builder() -> GetServerDetailsInputBuilder
pub fn builder() -> GetServerDetailsInputBuilder
Creates a new builder-style object to manufacture GetServerDetailsInput.
Trait Implementations§
source§impl Clone for GetServerDetailsInput
impl Clone for GetServerDetailsInput
source§fn clone(&self) -> GetServerDetailsInput
fn clone(&self) -> GetServerDetailsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetServerDetailsInput
impl Debug for GetServerDetailsInput
source§impl PartialEq<GetServerDetailsInput> for GetServerDetailsInput
impl PartialEq<GetServerDetailsInput> for GetServerDetailsInput
source§fn eq(&self, other: &GetServerDetailsInput) -> bool
fn eq(&self, other: &GetServerDetailsInput) -> bool
self and other values to be equal, and is used
by ==.