Struct aws_sdk_grafana::types::AwsSsoAuthentication
source · #[non_exhaustive]pub struct AwsSsoAuthentication {
pub sso_client_id: Option<String>,
}
Expand description
A structure containing information about how this workspace works with IAM Identity Center.
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.sso_client_id: Option<String>
The ID of the IAM Identity Center-managed application that is created by Amazon Managed Grafana.
Implementations§
source§impl AwsSsoAuthentication
impl AwsSsoAuthentication
sourcepub fn sso_client_id(&self) -> Option<&str>
pub fn sso_client_id(&self) -> Option<&str>
The ID of the IAM Identity Center-managed application that is created by Amazon Managed Grafana.
source§impl AwsSsoAuthentication
impl AwsSsoAuthentication
sourcepub fn builder() -> AwsSsoAuthenticationBuilder
pub fn builder() -> AwsSsoAuthenticationBuilder
Creates a new builder-style object to manufacture AwsSsoAuthentication
.
Trait Implementations§
source§impl Clone for AwsSsoAuthentication
impl Clone for AwsSsoAuthentication
source§fn clone(&self) -> AwsSsoAuthentication
fn clone(&self) -> AwsSsoAuthentication
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 AwsSsoAuthentication
impl Debug for AwsSsoAuthentication
source§impl PartialEq<AwsSsoAuthentication> for AwsSsoAuthentication
impl PartialEq<AwsSsoAuthentication> for AwsSsoAuthentication
source§fn eq(&self, other: &AwsSsoAuthentication) -> bool
fn eq(&self, other: &AwsSsoAuthentication) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsSsoAuthentication
Auto Trait Implementations§
impl RefUnwindSafe for AwsSsoAuthentication
impl Send for AwsSsoAuthentication
impl Sync for AwsSsoAuthentication
impl Unpin for AwsSsoAuthentication
impl UnwindSafe for AwsSsoAuthentication
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