Struct rusoto_iam::RemoveClientIDFromOpenIDConnectProviderRequest[][src]

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

Fields

The client ID (also known as audience) to remove from the IAM OIDC provider resource. For more information about client IDs, see CreateOpenIDConnectProvider.

The Amazon Resource Name (ARN) of the IAM OIDC provider resource to remove the client ID from. 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.

Trait Implementations

impl Default for RemoveClientIDFromOpenIDConnectProviderRequest
[src]

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

impl Debug for RemoveClientIDFromOpenIDConnectProviderRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for RemoveClientIDFromOpenIDConnectProviderRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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