#[non_exhaustive]pub struct DescribeSessionsInput { /* private fields */ }
Implementations§
source§impl DescribeSessionsInput
impl DescribeSessionsInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name of the stack. This value is case-sensitive.
sourcepub fn fleet_name(&self) -> Option<&str>
pub fn fleet_name(&self) -> Option<&str>
The name of the fleet. This value is case-sensitive.
sourcepub fn user_id(&self) -> Option<&str>
pub fn user_id(&self) -> Option<&str>
The user identifier (ID). If you specify a user ID, you must also specify the authentication type.
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 this value is null, it retrieves the first page.
sourcepub fn limit(&self) -> Option<i32>
pub fn limit(&self) -> Option<i32>
The size of each page of results. The default value is 20 and the maximum value is 50.
sourcepub fn authentication_type(&self) -> Option<&AuthenticationType>
pub fn authentication_type(&self) -> Option<&AuthenticationType>
The authentication method. Specify API
for a user authenticated using a streaming URL or SAML
for a SAML federated user. The default is to authenticate users using a streaming URL.
source§impl DescribeSessionsInput
impl DescribeSessionsInput
sourcepub fn builder() -> DescribeSessionsInputBuilder
pub fn builder() -> DescribeSessionsInputBuilder
Creates a new builder-style object to manufacture DescribeSessionsInput
.
source§impl DescribeSessionsInput
impl DescribeSessionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeSessions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<DescribeSessions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeSessions
>
Trait Implementations§
source§impl Clone for DescribeSessionsInput
impl Clone for DescribeSessionsInput
source§fn clone(&self) -> DescribeSessionsInput
fn clone(&self) -> DescribeSessionsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DescribeSessionsInput
impl Debug for DescribeSessionsInput
source§impl PartialEq<DescribeSessionsInput> for DescribeSessionsInput
impl PartialEq<DescribeSessionsInput> for DescribeSessionsInput
source§fn eq(&self, other: &DescribeSessionsInput) -> bool
fn eq(&self, other: &DescribeSessionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.