Module Values.EventIntegrationAssociationSource

The event integration association.

Sourcetype nonrec t = {
  1. eventIntegrationAssociationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the event integration association.

    *)
  2. eventIntegrationAssociationId : UUID.t option;
    (*

    The identifier for the event integration association.

    *)
  3. eventIntegrationName : Name.t option;
    (*

    The name of the event integration.

    *)
  4. clientId : ClientId.t option;
    (*

    The identifier for the client that is associated with the event integration.

    *)
  5. eventBridgeRuleName : EventBridgeRuleName.t option;
    (*

    The name of the EventBridge rule.

    *)
  6. clientAssociationMetadata : ClientAssociationMetadata.t option;
    (*

    The metadata associated with the client.

    *)
}
Sourceval make : ?eventIntegrationAssociationArn:??? -> ?eventIntegrationAssociationId:??? -> ?eventIntegrationName:??? -> ?clientId:??? -> ?eventBridgeRuleName:??? -> ?clientAssociationMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of NonBlankString.t ] * [> `String of NonBlankString.t ]) list | `String of Arn.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