Struct aws_sdk_ssoadmin::types::ResourceServerConfig
source · #[non_exhaustive]pub struct ResourceServerConfig {
pub scopes: Option<HashMap<String, ResourceServerScopeDetails>>,
}
Expand description
A structure that describes the configuration of a resource server.
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.scopes: Option<HashMap<String, ResourceServerScopeDetails>>
A list of the IAM Identity Center access scopes that are associated with this resource server.
Implementations§
source§impl ResourceServerConfig
impl ResourceServerConfig
sourcepub fn builder() -> ResourceServerConfigBuilder
pub fn builder() -> ResourceServerConfigBuilder
Creates a new builder-style object to manufacture ResourceServerConfig
.
Trait Implementations§
source§impl Clone for ResourceServerConfig
impl Clone for ResourceServerConfig
source§fn clone(&self) -> ResourceServerConfig
fn clone(&self) -> ResourceServerConfig
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 ResourceServerConfig
impl Debug for ResourceServerConfig
source§impl PartialEq for ResourceServerConfig
impl PartialEq for ResourceServerConfig
source§fn eq(&self, other: &ResourceServerConfig) -> bool
fn eq(&self, other: &ResourceServerConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResourceServerConfig
Auto Trait Implementations§
impl RefUnwindSafe for ResourceServerConfig
impl Send for ResourceServerConfig
impl Sync for ResourceServerConfig
impl Unpin for ResourceServerConfig
impl UnwindSafe for ResourceServerConfig
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.