Module Values.AddClientIDToOpenIDConnectProviderRequestSource

Adds a new client ID (also known as audience) to the list of client IDs already registered for the specified IAM OpenID Connect (OIDC) provider resource. This operation is idempotent; it does not fail or return an error if you add an existing client ID to the provider.

Sourcetype nonrec t = {
  1. openIDConnectProviderArn : ArnType.t;
    (*

    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.

    *)
  2. clientID : ClientIDType.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : openIDConnectProviderArn:ArnType.t -> clientID:ClientIDType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArnType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t