Module Values.GetOpenIDConnectProviderResponseSource

Contains the response to a successful GetOpenIDConnectProvider request.

Sourcetype getOpenIDConnectProviderResult = {
  1. url : OpenIDConnectProviderUrlType.t option;
    (*

    The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider.

    *)
  2. clientIDList : ClientIDListType.t option;
    (*

    A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.

    *)
  3. thumbprintList : ThumbprintListType.t option;
    (*

    A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider.

    *)
  4. createDate : DateType.t option;
    (*

    The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.

    *)
  5. tags : TagListType.t option;
    (*

    A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getOpenIDConnectProviderResult : getOpenIDConnectProviderResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `InvalidInputException of InvalidInputException.t
  2. | `NoSuchEntityException of NoSuchEntityException.t
  3. | `ServiceFailureException of ServiceFailureException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?url:??? -> ?clientIDList:??? -> ?thumbprintList:??? -> ?createDate:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidInputException of InvalidInputException.t | `NoSuchEntityException of NoSuchEntityException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidInputException of InvalidInputException.t | `NoSuchEntityException of NoSuchEntityException.t | `ServiceFailureException of ServiceFailureException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of ClientIDType.t | `Structure of (string * [> `String of TagKeyType.t ]) list ] list | `String of OpenIDConnectProviderUrlType.t | `Timestamp of DateType.t ]) list ]) 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