#[non_exhaustive]pub struct GetComputeAccessInput {
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 contains the compute resource you want to connect to. You can use either the fleet ID or ARN value.
compute_name: Option<String>
A unique identifier for the compute resource that you want to connect to. You can use either a registered compute name or an instance ID.
Implementations§
source§impl GetComputeAccessInput
impl GetComputeAccessInput
sourcepub fn fleet_id(&self) -> Option<&str>
pub fn fleet_id(&self) -> Option<&str>
A unique identifier for the fleet that contains the compute resource you want to connect to. You can use either the fleet ID or ARN value.
sourcepub fn compute_name(&self) -> Option<&str>
pub fn compute_name(&self) -> Option<&str>
A unique identifier for the compute resource that you want to connect to. You can use either a registered compute name or an instance ID.
source§impl GetComputeAccessInput
impl GetComputeAccessInput
sourcepub fn builder() -> GetComputeAccessInputBuilder
pub fn builder() -> GetComputeAccessInputBuilder
Creates a new builder-style object to manufacture GetComputeAccessInput
.
Trait Implementations§
source§impl Clone for GetComputeAccessInput
impl Clone for GetComputeAccessInput
source§fn clone(&self) -> GetComputeAccessInput
fn clone(&self) -> GetComputeAccessInput
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 GetComputeAccessInput
impl Debug for GetComputeAccessInput
source§impl PartialEq for GetComputeAccessInput
impl PartialEq for GetComputeAccessInput
source§fn eq(&self, other: &GetComputeAccessInput) -> bool
fn eq(&self, other: &GetComputeAccessInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetComputeAccessInput
Auto Trait Implementations§
impl RefUnwindSafe for GetComputeAccessInput
impl Send for GetComputeAccessInput
impl Sync for GetComputeAccessInput
impl Unpin for GetComputeAccessInput
impl UnwindSafe for GetComputeAccessInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.