Class: Aws::IAM::Types::GetOpenIDConnectProviderRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iam/types.rb

Overview

Note:

When making an API call, you may pass GetOpenIDConnectProviderRequest data as a hash:

{
  open_id_connect_provider_arn: "arnType", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#open_id_connect_provider_arnString

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 ListOpenIDConnectProviders operation.

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

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html

Returns:

  • (String)


3722
3723
3724
3725
3726
# File 'lib/aws-sdk-iam/types.rb', line 3722

class GetOpenIDConnectProviderRequest < Struct.new(
  :open_id_connect_provider_arn)
  SENSITIVE = []
  include Aws::Structure
end