Module Values_2.UpdateDataTableMetadataRequestSource

Updates the metadata properties of a data table. Accepts all fields similar to CreateDataTable, except for fields and tags. There are no other granular update endpoints. It does not act as a patch operation - all properties must be provided or defaults will be used. Fields follow the same requirements as CreateDataTable.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t;
    (*

    The unique identifier for the Amazon Connect instance.

    *)
  2. dataTableId : Values_0.DataTableId.t;
    (*

    The unique identifier for the data table. Must also accept the table ARN with or without a version alias. If the version is provided as part of the identifier or ARN, the version must be $LATEST. Providing any other alias fails with an error.

    *)
  3. name : Values_0.DataTableName.t;
    (*

    The updated name for the data table. Must conform to Connect human readable string specification and have 1-127 characters. Must be unique for the instance using case-insensitive comparison.

    *)
  4. description : Values_0.DataTableDescription.t option;
    (*

    The updated description for the data table. Must conform to Connect human readable string specification and have 0-250 characters.

    *)
  5. valueLockLevel : Values_0.DataTableLockLevel.t;
    (*

    The updated value lock level for the data table. One of DATA_TABLE, PRIMARY_VALUE, ATTRIBUTE, VALUE, and NONE.

    *)
  6. timeZone : Values_0.TimeZone.t;
    (*

    The updated IANA timezone identifier to use when resolving time based dynamic values.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> instanceId:Values_0.InstanceId.t -> dataTableId:Values_0.DataTableId.t -> name:Values_0.DataTableName.t -> valueLockLevel:Values_0.DataTableLockLevel.t -> timeZone:Values_0.TimeZone.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.InstanceId.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