Struct rusoto_iam::AddClientIDToOpenIDConnectProviderRequest[][src]

pub struct AddClientIDToOpenIDConnectProviderRequest {
    pub client_id: String,
    pub open_id_connect_provider_arn: String,
}

Fields

The client ID (also known as audience) to add to the IAM OpenID Connect provider resource.

The Amazon Resource Name (ARN) of the IAM OpenID Connect (OIDC) provider resource to add the client ID to. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders operation.

Trait Implementations

impl Default for AddClientIDToOpenIDConnectProviderRequest
[src]

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

impl Debug for AddClientIDToOpenIDConnectProviderRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for AddClientIDToOpenIDConnectProviderRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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