Module Values.IdentitySourceItemSource

A structure that defines an identity source. This data type is a response parameter to the ListIdentitySources operation.

Sourcetype nonrec t = {
  1. createdDate : TimestampFormat.t option;
    (*

    The date and time the identity source was originally created.

    *)
  2. details : IdentitySourceItemDetails.t option;
    (*

    A structure that contains the details of the associated identity provider (IdP).

    *)
  3. identitySourceId : IdentitySourceId.t option;
    (*

    The unique identifier of the identity source.

    *)
  4. lastUpdatedDate : TimestampFormat.t option;
    (*

    The date and time the identity source was most recently updated.

    *)
  5. policyStoreId : PolicyStoreId.t option;
    (*

    The identifier of the policy store that contains the identity source.

    *)
  6. principalEntityType : PrincipalEntityType.t option;
    (*

    The Cedar entity type of the principals returned from the IdP associated with this identity source.

    *)
  7. configuration : ConfigurationItem.t option;
    (*

    Contains configuration information about an identity source.

    *)
}
Sourceval make : ?createdDate:??? -> ?details:??? -> ?identitySourceId:??? -> ?lastUpdatedDate:??? -> ?policyStoreId:??? -> ?principalEntityType:??? -> ?configuration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IdentitySourceId.t | `Structure of (string * [> `Enum of string | `List of [> `String of ClientId.t ] list | `String of UserPoolArn.t | `Structure of (string * [> `List of [> `String of ClientId.t ] list | `String of UserPoolArn.t | `Structure of (string * [> `String of GroupEntityType.t | `Structure of (string * [> `List of [> `String of Audience.t ] list | `String of Claim.t ]) list ]) list ]) list ]) list | `Timestamp of TimestampFormat.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