Learn R Programming

paws.security.identity (version 0.1.12)

iam_get_open_id_connect_provider: Returns information about the specified OpenID Connect (OIDC) provider resource object in IAM

Description

Returns information about the specified OpenID Connect (OIDC) provider resource object in IAM.

Usage

iam_get_open_id_connect_provider(OpenIDConnectProviderArn)

Value

A list with the following syntax:

list(
  Url = "string",
  ClientIDList = list(
    "string"
  ),
  ThumbprintList = list(
    "string"
  ),
  CreateDate = as.POSIXct(
    "2015-01-01"
  )
)

Arguments

OpenIDConnectProviderArn

[required] The Amazon Resource Name (ARN) of the OIDC provider resource object in IAM to get information for. You can get a list of OIDC provider resource ARNs by using the list_open_id_connect_providers operation.

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

Request syntax

svc$get_open_id_connect_provider(
  OpenIDConnectProviderArn = "string"
)