Struct rusoto_iam::UpdateOpenIDConnectProviderThumbprintRequest[][src]

pub struct UpdateOpenIDConnectProviderThumbprintRequest {
    pub open_id_connect_provider_arn: String,
    pub thumbprint_list: Vec<String>,
}

Fields

The Amazon Resource Name (ARN) of the IAM OIDC provider resource object for which you want to update the thumbprint. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders operation.

For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

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

Trait Implementations

impl Default for UpdateOpenIDConnectProviderThumbprintRequest
[src]

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

impl Debug for UpdateOpenIDConnectProviderThumbprintRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdateOpenIDConnectProviderThumbprintRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UpdateOpenIDConnectProviderThumbprintRequest
[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