Struct aws_sdk_appstream::operation::describe_directory_configs::DescribeDirectoryConfigsOutput
source · #[non_exhaustive]pub struct DescribeDirectoryConfigsOutput {
pub directory_configs: Option<Vec<DirectoryConfig>>,
pub next_token: Option<String>,
/* private fields */
}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.directory_configs: Option<Vec<DirectoryConfig>>Information about the directory configurations. Note that although the response syntax in this topic includes the account password, this password is not returned in the actual response.
next_token: Option<String>The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
Implementations§
source§impl DescribeDirectoryConfigsOutput
impl DescribeDirectoryConfigsOutput
sourcepub fn directory_configs(&self) -> &[DirectoryConfig]
pub fn directory_configs(&self) -> &[DirectoryConfig]
Information about the directory configurations. Note that although the response syntax in this topic includes the account password, this password is not returned in the actual response.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .directory_configs.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The pagination token to use to retrieve the next page of results for this operation. If there are no more pages, this value is null.
source§impl DescribeDirectoryConfigsOutput
impl DescribeDirectoryConfigsOutput
sourcepub fn builder() -> DescribeDirectoryConfigsOutputBuilder
pub fn builder() -> DescribeDirectoryConfigsOutputBuilder
Creates a new builder-style object to manufacture DescribeDirectoryConfigsOutput.
Trait Implementations§
source§impl Clone for DescribeDirectoryConfigsOutput
impl Clone for DescribeDirectoryConfigsOutput
source§fn clone(&self) -> DescribeDirectoryConfigsOutput
fn clone(&self) -> DescribeDirectoryConfigsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeDirectoryConfigsOutput
impl PartialEq for DescribeDirectoryConfigsOutput
source§fn eq(&self, other: &DescribeDirectoryConfigsOutput) -> bool
fn eq(&self, other: &DescribeDirectoryConfigsOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for DescribeDirectoryConfigsOutput
impl RequestId for DescribeDirectoryConfigsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeDirectoryConfigsOutput
Auto Trait Implementations§
impl Freeze for DescribeDirectoryConfigsOutput
impl RefUnwindSafe for DescribeDirectoryConfigsOutput
impl Send for DescribeDirectoryConfigsOutput
impl Sync for DescribeDirectoryConfigsOutput
impl Unpin for DescribeDirectoryConfigsOutput
impl UnwindSafe for DescribeDirectoryConfigsOutput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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