pub struct DescribeSessionsRequest {
pub authentication_type: Option<String>,
pub fleet_name: String,
pub limit: Option<i64>,
pub next_token: Option<String>,
pub stack_name: String,
pub user_id: Option<String>,
}
Fields§
§authentication_type: Option<String>
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.
fleet_name: String
The name of the fleet. This value is case-sensitive.
limit: Option<i64>
The size of each page of results. The default value is 20 and the maximum value is 50.
next_token: Option<String>
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.
stack_name: String
The name of the stack. This value is case-sensitive.
user_id: Option<String>
The user identifier (ID). If you specify a user ID, you must also specify the authentication type.
Trait Implementations§
Source§impl Clone for DescribeSessionsRequest
impl Clone for DescribeSessionsRequest
Source§fn clone(&self) -> DescribeSessionsRequest
fn clone(&self) -> DescribeSessionsRequest
Returns a duplicate 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 DescribeSessionsRequest
impl Debug for DescribeSessionsRequest
Source§impl Default for DescribeSessionsRequest
impl Default for DescribeSessionsRequest
Source§fn default() -> DescribeSessionsRequest
fn default() -> DescribeSessionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSessionsRequest
impl PartialEq for DescribeSessionsRequest
Source§impl Serialize for DescribeSessionsRequest
impl Serialize for DescribeSessionsRequest
impl StructuralPartialEq for DescribeSessionsRequest
Auto Trait Implementations§
impl Freeze for DescribeSessionsRequest
impl RefUnwindSafe for DescribeSessionsRequest
impl Send for DescribeSessionsRequest
impl Sync for DescribeSessionsRequest
impl Unpin for DescribeSessionsRequest
impl UnwindSafe for DescribeSessionsRequest
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
Mutably borrows from an owned value. Read more