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