Method: Aws::IAM::Types::CreateOpenIDConnectProviderRequest#url
- Defined in:
- lib/aws-sdk-iam/types.rb
#url ⇒ String
The URL of the identity provider. The URL must begin with ‘https://` and should correspond to the `iss` claim in the provider’s OpenID Connect ID tokens. Per the OIDC standard, path components are allowed but query parameters are not. Typically the URL consists of only a hostname, like ‘server.example.org` or `example.com`. The URL should not contain a port number.
You cannot register the same provider multiple times in a single Amazon Web Services account. If you try to submit a URL that has already been used for an OpenID Connect provider in the Amazon Web Services account, you will get an error.
952 953 954 955 956 957 958 959 |
# File 'lib/aws-sdk-iam/types.rb', line 952 class CreateOpenIDConnectProviderRequest < Struct.new( :url, :client_id_list, :thumbprint_list, :tags) SENSITIVE = [] include Aws::Structure end |