Struct aws_sdk_workspaces::operation::describe_connection_aliases::DescribeConnectionAliasesInput
source · #[non_exhaustive]pub struct DescribeConnectionAliasesInput {
pub alias_ids: Option<Vec<String>>,
pub resource_id: Option<String>,
pub limit: Option<i32>,
pub next_token: Option<String>,
}
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.alias_ids: Option<Vec<String>>
The identifiers of the connection aliases to describe.
resource_id: Option<String>
The identifier of the directory associated with the connection alias.
limit: Option<i32>
The maximum number of connection aliases 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.
Implementations§
source§impl DescribeConnectionAliasesInput
impl DescribeConnectionAliasesInput
sourcepub fn alias_ids(&self) -> &[String]
pub fn alias_ids(&self) -> &[String]
The identifiers of the connection aliases to describe.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .alias_ids.is_none()
.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The identifier of the directory associated with the connection alias.
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.
source§impl DescribeConnectionAliasesInput
impl DescribeConnectionAliasesInput
sourcepub fn builder() -> DescribeConnectionAliasesInputBuilder
pub fn builder() -> DescribeConnectionAliasesInputBuilder
Creates a new builder-style object to manufacture DescribeConnectionAliasesInput
.
Trait Implementations§
source§impl Clone for DescribeConnectionAliasesInput
impl Clone for DescribeConnectionAliasesInput
source§fn clone(&self) -> DescribeConnectionAliasesInput
fn clone(&self) -> DescribeConnectionAliasesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeConnectionAliasesInput
impl PartialEq for DescribeConnectionAliasesInput
source§fn eq(&self, other: &DescribeConnectionAliasesInput) -> bool
fn eq(&self, other: &DescribeConnectionAliasesInput) -> bool
self
and other
values to be equal, and is used
by ==
.