#[non_exhaustive]pub struct ResourceServerConfigBuilder { /* private fields */ }
Expand description
A builder for ResourceServerConfig
.
Implementations§
source§impl ResourceServerConfigBuilder
impl ResourceServerConfigBuilder
sourcepub fn scopes(self, k: impl Into<String>, v: ResourceServerScopeDetails) -> Self
pub fn scopes(self, k: impl Into<String>, v: ResourceServerScopeDetails) -> Self
Adds a key-value pair to scopes
.
To override the contents of this collection use set_scopes
.
A list of the IAM Identity Center access scopes that are associated with this resource server.
sourcepub fn set_scopes(
self,
input: Option<HashMap<String, ResourceServerScopeDetails>>,
) -> Self
pub fn set_scopes( self, input: Option<HashMap<String, ResourceServerScopeDetails>>, ) -> Self
A list of the IAM Identity Center access scopes that are associated with this resource server.
sourcepub fn get_scopes(&self) -> &Option<HashMap<String, ResourceServerScopeDetails>>
pub fn get_scopes(&self) -> &Option<HashMap<String, ResourceServerScopeDetails>>
A list of the IAM Identity Center access scopes that are associated with this resource server.
sourcepub fn build(self) -> ResourceServerConfig
pub fn build(self) -> ResourceServerConfig
Consumes the builder and constructs a ResourceServerConfig
.
Trait Implementations§
source§impl Clone for ResourceServerConfigBuilder
impl Clone for ResourceServerConfigBuilder
source§fn clone(&self) -> ResourceServerConfigBuilder
fn clone(&self) -> ResourceServerConfigBuilder
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 ResourceServerConfigBuilder
impl Debug for ResourceServerConfigBuilder
source§impl Default for ResourceServerConfigBuilder
impl Default for ResourceServerConfigBuilder
source§fn default() -> ResourceServerConfigBuilder
fn default() -> ResourceServerConfigBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ResourceServerConfigBuilder
Auto Trait Implementations§
impl Freeze for ResourceServerConfigBuilder
impl RefUnwindSafe for ResourceServerConfigBuilder
impl Send for ResourceServerConfigBuilder
impl Sync for ResourceServerConfigBuilder
impl Unpin for ResourceServerConfigBuilder
impl UnwindSafe for ResourceServerConfigBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.