Struct aws_sdk_workspaces::operation::describe_application_associations::DescribeApplicationAssociationsInput
source · #[non_exhaustive]pub struct DescribeApplicationAssociationsInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub application_id: Option<String>,
pub associated_resource_types: Option<Vec<ApplicationAssociatedResourceType>>,
}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.max_results: Option<i32>The maximum number of associations to return.
next_token: Option<String>If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
application_id: Option<String>The identifier of the specified application.
associated_resource_types: Option<Vec<ApplicationAssociatedResourceType>>The resource type of the associated resources.
Implementations§
source§impl DescribeApplicationAssociationsInput
impl DescribeApplicationAssociationsInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of associations to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The identifier of the specified application.
sourcepub fn associated_resource_types(&self) -> &[ApplicationAssociatedResourceType]
pub fn associated_resource_types(&self) -> &[ApplicationAssociatedResourceType]
The resource type of the associated resources.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .associated_resource_types.is_none().
source§impl DescribeApplicationAssociationsInput
impl DescribeApplicationAssociationsInput
sourcepub fn builder() -> DescribeApplicationAssociationsInputBuilder
pub fn builder() -> DescribeApplicationAssociationsInputBuilder
Creates a new builder-style object to manufacture DescribeApplicationAssociationsInput.
Trait Implementations§
source§impl Clone for DescribeApplicationAssociationsInput
impl Clone for DescribeApplicationAssociationsInput
source§fn clone(&self) -> DescribeApplicationAssociationsInput
fn clone(&self) -> DescribeApplicationAssociationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeApplicationAssociationsInput
impl PartialEq for DescribeApplicationAssociationsInput
source§fn eq(&self, other: &DescribeApplicationAssociationsInput) -> bool
fn eq(&self, other: &DescribeApplicationAssociationsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeApplicationAssociationsInput
Auto Trait Implementations§
impl Freeze for DescribeApplicationAssociationsInput
impl RefUnwindSafe for DescribeApplicationAssociationsInput
impl Send for DescribeApplicationAssociationsInput
impl Sync for DescribeApplicationAssociationsInput
impl Unpin for DescribeApplicationAssociationsInput
impl UnwindSafe for DescribeApplicationAssociationsInput
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