#[non_exhaustive]pub struct DescribeAccessOutputBuilder { /* private fields */ }Expand description
A builder for DescribeAccessOutput.
Implementations§
source§impl DescribeAccessOutputBuilder
impl DescribeAccessOutputBuilder
sourcepub fn server_id(self, input: impl Into<String>) -> Self
pub fn server_id(self, input: impl Into<String>) -> Self
A system-assigned unique identifier for a server that has this access assigned.
sourcepub fn set_server_id(self, input: Option<String>) -> Self
pub fn set_server_id(self, input: Option<String>) -> Self
A system-assigned unique identifier for a server that has this access assigned.
sourcepub fn get_server_id(&self) -> &Option<String>
pub fn get_server_id(&self) -> &Option<String>
A system-assigned unique identifier for a server that has this access assigned.
sourcepub fn access(self, input: DescribedAccess) -> Self
pub fn access(self, input: DescribedAccess) -> Self
The external identifier of the server that the access is attached to.
sourcepub fn set_access(self, input: Option<DescribedAccess>) -> Self
pub fn set_access(self, input: Option<DescribedAccess>) -> Self
The external identifier of the server that the access is attached to.
sourcepub fn get_access(&self) -> &Option<DescribedAccess>
pub fn get_access(&self) -> &Option<DescribedAccess>
The external identifier of the server that the access is attached to.
sourcepub fn build(self) -> DescribeAccessOutput
pub fn build(self) -> DescribeAccessOutput
Consumes the builder and constructs a DescribeAccessOutput.
Trait Implementations§
source§impl Clone for DescribeAccessOutputBuilder
impl Clone for DescribeAccessOutputBuilder
source§fn clone(&self) -> DescribeAccessOutputBuilder
fn clone(&self) -> DescribeAccessOutputBuilder
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 DescribeAccessOutputBuilder
impl Debug for DescribeAccessOutputBuilder
source§impl Default for DescribeAccessOutputBuilder
impl Default for DescribeAccessOutputBuilder
source§fn default() -> DescribeAccessOutputBuilder
fn default() -> DescribeAccessOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeAccessOutputBuilder
impl PartialEq for DescribeAccessOutputBuilder
source§fn eq(&self, other: &DescribeAccessOutputBuilder) -> bool
fn eq(&self, other: &DescribeAccessOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeAccessOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DescribeAccessOutputBuilder
impl Send for DescribeAccessOutputBuilder
impl Sync for DescribeAccessOutputBuilder
impl Unpin for DescribeAccessOutputBuilder
impl UnwindSafe for DescribeAccessOutputBuilder
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