Struct aws_sdk_ssoadmin::operation::describe_application_provider::DescribeApplicationProviderOutput
source · #[non_exhaustive]pub struct DescribeApplicationProviderOutput {
pub application_provider_arn: String,
pub federation_protocol: Option<FederationProtocol>,
pub display_data: Option<DisplayData>,
pub resource_server_config: Option<ResourceServerConfig>,
/* private fields */
}
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.application_provider_arn: String
The ARN of the application provider.
federation_protocol: Option<FederationProtocol>
The protocol used to federate to the application provider.
display_data: Option<DisplayData>
A structure with details about the display data for the application provider.
resource_server_config: Option<ResourceServerConfig>
A structure with details about the receiving application.
Implementations§
source§impl DescribeApplicationProviderOutput
impl DescribeApplicationProviderOutput
sourcepub fn application_provider_arn(&self) -> &str
pub fn application_provider_arn(&self) -> &str
The ARN of the application provider.
sourcepub fn federation_protocol(&self) -> Option<&FederationProtocol>
pub fn federation_protocol(&self) -> Option<&FederationProtocol>
The protocol used to federate to the application provider.
sourcepub fn display_data(&self) -> Option<&DisplayData>
pub fn display_data(&self) -> Option<&DisplayData>
A structure with details about the display data for the application provider.
sourcepub fn resource_server_config(&self) -> Option<&ResourceServerConfig>
pub fn resource_server_config(&self) -> Option<&ResourceServerConfig>
A structure with details about the receiving application.
source§impl DescribeApplicationProviderOutput
impl DescribeApplicationProviderOutput
sourcepub fn builder() -> DescribeApplicationProviderOutputBuilder
pub fn builder() -> DescribeApplicationProviderOutputBuilder
Creates a new builder-style object to manufacture DescribeApplicationProviderOutput
.
Trait Implementations§
source§impl Clone for DescribeApplicationProviderOutput
impl Clone for DescribeApplicationProviderOutput
source§fn clone(&self) -> DescribeApplicationProviderOutput
fn clone(&self) -> DescribeApplicationProviderOutput
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 PartialEq for DescribeApplicationProviderOutput
impl PartialEq for DescribeApplicationProviderOutput
source§fn eq(&self, other: &DescribeApplicationProviderOutput) -> bool
fn eq(&self, other: &DescribeApplicationProviderOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeApplicationProviderOutput
impl RequestId for DescribeApplicationProviderOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeApplicationProviderOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeApplicationProviderOutput
impl Send for DescribeApplicationProviderOutput
impl Sync for DescribeApplicationProviderOutput
impl Unpin for DescribeApplicationProviderOutput
impl UnwindSafe for DescribeApplicationProviderOutput
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.