#[non_exhaustive]pub struct GetOpenIdConnectProviderOutput {
pub url: Option<String>,
pub client_id_list: Option<Vec<String>>,
pub thumbprint_list: Option<Vec<String>>,
pub create_date: Option<DateTime>,
pub tags: Option<Vec<Tag>>,
/* private fields */
}
Expand description
Contains the response to a successful GetOpenIDConnectProvider
request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.url: Option<String>
The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider
.
client_id_list: Option<Vec<String>>
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider
.
thumbprint_list: Option<Vec<String>>
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider
.
create_date: Option<DateTime>
The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.
A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
Implementations§
source§impl GetOpenIdConnectProviderOutput
impl GetOpenIdConnectProviderOutput
sourcepub fn url(&self) -> Option<&str>
pub fn url(&self) -> Option<&str>
The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider
.
sourcepub fn client_id_list(&self) -> &[String]
pub fn client_id_list(&self) -> &[String]
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .client_id_list.is_none()
.
sourcepub fn thumbprint_list(&self) -> &[String]
pub fn thumbprint_list(&self) -> &[String]
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .thumbprint_list.is_none()
.
sourcepub fn create_date(&self) -> Option<&DateTime>
pub fn create_date(&self) -> Option<&DateTime>
The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.
A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl GetOpenIdConnectProviderOutput
impl GetOpenIdConnectProviderOutput
sourcepub fn builder() -> GetOpenIdConnectProviderOutputBuilder
pub fn builder() -> GetOpenIdConnectProviderOutputBuilder
Creates a new builder-style object to manufacture GetOpenIdConnectProviderOutput
.
Trait Implementations§
source§impl Clone for GetOpenIdConnectProviderOutput
impl Clone for GetOpenIdConnectProviderOutput
source§fn clone(&self) -> GetOpenIdConnectProviderOutput
fn clone(&self) -> GetOpenIdConnectProviderOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetOpenIdConnectProviderOutput
impl PartialEq for GetOpenIdConnectProviderOutput
source§fn eq(&self, other: &GetOpenIdConnectProviderOutput) -> bool
fn eq(&self, other: &GetOpenIdConnectProviderOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetOpenIdConnectProviderOutput
impl RequestId for GetOpenIdConnectProviderOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.