Module Values.GetSAMLProviderResponseSource

Contains the response to a successful GetSAMLProvider request.

Sourcetype getSAMLProviderResult = {
  1. sAMLProviderUUID : PrivateKeyIdType.t option;
    (*

    The unique identifier assigned to the SAML provider.

    *)
  2. sAMLMetadataDocument : SAMLMetadataDocumentType.t option;
    (*

    The XML metadata document that includes information about an identity provider.

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

    The date and time when the SAML provider was created.

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

    The expiration date and time for the SAML provider.

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

    A list of tags that are attached to the specified IAM SAML 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.

    *)
  6. assertionEncryptionMode : AssertionEncryptionModeType.t option;
    (*

    Specifies the encryption setting for the SAML provider.

    *)
  7. privateKeyList : PrivateKeyList.t option;
    (*

    The private key metadata for the SAML provider.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getSAMLProviderResult : getSAMLProviderResult;
  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 : ?sAMLProviderUUID:??? -> ?sAMLMetadataDocument:??? -> ?createDate:??? -> ?validUntil:??? -> ?tags:??? -> ?assertionEncryptionMode:??? -> ?privateKeyList:??? -> 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 * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKeyType.t | `Timestamp of DateType.t ]) list ] list | `String of PrivateKeyIdType.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