Module Values.ContentAssociationSummarySource

Summary information about a content association.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Uuid.t option;
    (*

    The identifier of the knowledge base.

    *)
  2. knowledgeBaseArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the knowledge base.

    *)
  3. contentId : Uuid.t option;
    (*

    The identifier of the content.

    *)
  4. contentArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the content.

    *)
  5. contentAssociationId : Uuid.t option;
    (*

    The identifier of the content association. Can be either the ID or the ARN. URLs cannot contain the ARN.

    *)
  6. contentAssociationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the content association.

    *)
  7. associationType : ContentAssociationType.t option;
    (*

    The type of association.

    *)
  8. associationData : ContentAssociationContents.t option;
    (*

    The content association.

    *)
  9. tags : Tags.t option;
    (*

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourceval make : ?knowledgeBaseId:??? -> ?knowledgeBaseArn:??? -> ?contentId:??? -> ?contentArn:??? -> ?contentAssociationId:??? -> ?contentAssociationArn:??? -> ?associationType:??? -> ?associationData:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Uuid.t | `Structure of (string * [> `Structure of (string * [> `String of GenericArn.t ]) list ]) list ]) 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