Struct rusoto_iam::GetOpenIDConnectProviderResponse[][src]

pub struct GetOpenIDConnectProviderResponse {
    pub client_id_list: Option<Vec<String>>,
    pub create_date: Option<String>,
    pub thumbprint_list: Option<Vec<String>>,
    pub url: Option<String>,
}

Contains the response to a successful GetOpenIDConnectProvider request.

Fields

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.

The date and time when the IAM OIDC provider resource object was created in the AWS account.

A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.

The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider.

Trait Implementations

impl Default for GetOpenIDConnectProviderResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for GetOpenIDConnectProviderResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetOpenIDConnectProviderResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetOpenIDConnectProviderResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations