Struct aws_sdk_gamelift::operation::get_instance_access::builders::GetInstanceAccessOutputBuilder
source · #[non_exhaustive]pub struct GetInstanceAccessOutputBuilder { /* private fields */ }
Expand description
A builder for GetInstanceAccessOutput
.
Implementations§
source§impl GetInstanceAccessOutputBuilder
impl GetInstanceAccessOutputBuilder
sourcepub fn instance_access(self, input: InstanceAccess) -> Self
pub fn instance_access(self, input: InstanceAccess) -> Self
The connection information for a fleet instance, including IP address and access credentials.
sourcepub fn set_instance_access(self, input: Option<InstanceAccess>) -> Self
pub fn set_instance_access(self, input: Option<InstanceAccess>) -> Self
The connection information for a fleet instance, including IP address and access credentials.
sourcepub fn get_instance_access(&self) -> &Option<InstanceAccess>
pub fn get_instance_access(&self) -> &Option<InstanceAccess>
The connection information for a fleet instance, including IP address and access credentials.
sourcepub fn build(self) -> GetInstanceAccessOutput
pub fn build(self) -> GetInstanceAccessOutput
Consumes the builder and constructs a GetInstanceAccessOutput
.
Trait Implementations§
source§impl Clone for GetInstanceAccessOutputBuilder
impl Clone for GetInstanceAccessOutputBuilder
source§fn clone(&self) -> GetInstanceAccessOutputBuilder
fn clone(&self) -> GetInstanceAccessOutputBuilder
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 Default for GetInstanceAccessOutputBuilder
impl Default for GetInstanceAccessOutputBuilder
source§fn default() -> GetInstanceAccessOutputBuilder
fn default() -> GetInstanceAccessOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetInstanceAccessOutputBuilder
impl PartialEq for GetInstanceAccessOutputBuilder
source§fn eq(&self, other: &GetInstanceAccessOutputBuilder) -> bool
fn eq(&self, other: &GetInstanceAccessOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetInstanceAccessOutputBuilder
Auto Trait Implementations§
impl Freeze for GetInstanceAccessOutputBuilder
impl RefUnwindSafe for GetInstanceAccessOutputBuilder
impl Send for GetInstanceAccessOutputBuilder
impl Sync for GetInstanceAccessOutputBuilder
impl Unpin for GetInstanceAccessOutputBuilder
impl UnwindSafe for GetInstanceAccessOutputBuilder
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.