Module Values.AssociationSource

Represents a service association within an AgentSpace, defining how the agent interacts with external services.

Sourcetype nonrec t = {
  1. agentSpaceId : AgentSpaceId.t option;
    (*

    The unique identifier of the AgentSpace

    *)
  2. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the resource was created.

    *)
  3. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the resource was last updated.

    *)
  4. status : ValidationStatus.t option;
    (*

    Validation status

    *)
  5. associationId : AssociationId.t option;
    (*

    The unique identifier of the given association.

    *)
  6. serviceId : ServiceId.t option;
    (*

    The identifier for associated service

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

    The configuration that directs how AgentSpace interacts with the given service.

    *)
}
Sourceval make : ?agentSpaceId:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> ?associationId:??? -> ?serviceId:??? -> ?configuration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AgentSpaceId.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of SourceAwsConfigurationAccountIdString.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ]) list ]) list | `Timestamp of SyntheticTimestamp_date_time.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