#[non_exhaustive]pub struct GetComputeAuthTokenInput {
pub fleet_id: Option<String>,
pub compute_name: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.fleet_id: Option<String>A unique identifier for the fleet that the compute is registered to.
compute_name: Option<String>The name of the compute resource you are requesting the authentication token for.
Implementations§
source§impl GetComputeAuthTokenInput
impl GetComputeAuthTokenInput
sourcepub fn builder() -> GetComputeAuthTokenInputBuilder
pub fn builder() -> GetComputeAuthTokenInputBuilder
Creates a new builder-style object to manufacture GetComputeAuthTokenInput.
Trait Implementations§
source§impl Clone for GetComputeAuthTokenInput
impl Clone for GetComputeAuthTokenInput
source§fn clone(&self) -> GetComputeAuthTokenInput
fn clone(&self) -> GetComputeAuthTokenInput
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 GetComputeAuthTokenInput
impl Debug for GetComputeAuthTokenInput
source§impl PartialEq<GetComputeAuthTokenInput> for GetComputeAuthTokenInput
impl PartialEq<GetComputeAuthTokenInput> for GetComputeAuthTokenInput
source§fn eq(&self, other: &GetComputeAuthTokenInput) -> bool
fn eq(&self, other: &GetComputeAuthTokenInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetComputeAuthTokenInput
Auto Trait Implementations§
impl RefUnwindSafe for GetComputeAuthTokenInput
impl Send for GetComputeAuthTokenInput
impl Sync for GetComputeAuthTokenInput
impl Unpin for GetComputeAuthTokenInput
impl UnwindSafe for GetComputeAuthTokenInput
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