Module Values.GetIdentitySourceResponseSource

Returns details for an identity source. For more information, see Identity Source in the Multi-party approval User Guide.

Sourcetype nonrec t = {
  1. identitySourceType : IdentitySourceType.t option;
    (*

    The type of resource that provided identities to the identity source. For example, an IAM Identity Center instance.

    *)
  2. identitySourceParameters : IdentitySourceParametersForGet.t option;
    (*

    A IdentitySourceParameters object. Contains details for the resource that provides identities to the identity source. For example, an IAM Identity Center instance.

    *)
  3. identitySourceArn : String_.t option;
    (*

    Amazon Resource Name (ARN) for the identity source.

    *)
  4. creationTime : IsoTimestamp.t option;
    (*

    Timestamp when the identity source was created.

    *)
  5. status : IdentitySourceStatus.t option;
    (*

    Status for the identity source. For example, if the identity source is ACTIVE.

    *)
  6. statusCode : IdentitySourceStatusCode.t option;
    (*

    Status code of the identity source.

    *)
  7. statusMessage : String_.t option;
    (*

    Message describing the status for the identity source.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?identitySourceType:??? -> ?identitySourceParameters:??? -> ?identitySourceArn:??? -> ?creationTime:??? -> ?status:??? -> ?statusCode:??? -> ?statusMessage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list | `Timestamp of IsoTimestamp.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