Module Values.DataAccessorSource

Provides summary information about a data accessor.

Sourcetype nonrec t = {
  1. displayName : DataAccessorName.t option;
    (*

    The friendly name of the data accessor.

    *)
  2. dataAccessorId : DataAccessorId.t option;
    (*

    The unique identifier of the data accessor.

    *)
  3. dataAccessorArn : DataAccessorArn.t option;
    (*

    The Amazon Resource Name (ARN) of the data accessor.

    *)
  4. idcApplicationArn : IdcApplicationArn.t option;
    (*

    The Amazon Resource Name (ARN) of the associated IAM Identity Center application.

    *)
  5. principal : PrincipalRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role for the ISV associated with this data accessor.

    *)
  6. authenticationDetail : DataAccessorAuthenticationDetail.t option;
    (*

    The authentication configuration details for the data accessor. This specifies how the ISV authenticates when accessing data through this data accessor.

    *)
  7. createdAt : Timestamp.t option;
    (*

    The timestamp when the data accessor was created.

    *)
  8. updatedAt : Timestamp.t option;
    (*

    The timestamp when the data accessor was last updated.

    *)
}
Sourceval make : ?displayName:??? -> ?dataAccessorId:??? -> ?dataAccessorArn:??? -> ?idcApplicationArn:??? -> ?principal:??? -> ?authenticationDetail:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DataAccessorName.t | `Structure of (string * [> `Enum of string | `List of [> `String of DataAccessorExternalId.t ] list | `Structure of (string * [> `Structure of (string * [> `String of IdcTrustedTokenIssuerArn.t ]) list ]) list ]) list | `Timestamp of Timestamp.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